Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sentry:9.0-onbuild
FROM sentry:9.1-onbuild

ENTRYPOINT [ "/usr/src/sentry/docker-entrypoint.sh" ]
RUN chmod +x /usr/src/sentry/docker-entrypoint.sh
Expand Down
2 changes: 2 additions & 0 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ if [[ -z ${run_migration} ]]; then
else
# Loads initial schema if doesn't already exists
sentry exec initialize.py
# Run migrations if any
sentry upgrade
# Load fixtures
sentry exec sync_fixtures.py
fi
Loading