Skip to content

Commit

Permalink
Merge pull request #128 from unicef/fix/entrypoint-setup-exclude-model
Browse files Browse the repository at this point in the history
Add --no-sync-models flag to setup in entrypoint
  • Loading branch information
emil-kellton authored Jan 9, 2025
2 parents c7e1ea5 + 01140b9 commit fcc36b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/bin/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ echo "Docker run command: $1"
case "$1" in
setup)
django-admin check --deploy || exit 1
django-admin upgrade --no-static || exit 1
django-admin upgrade --no-static --no-sync-models || exit 1
exit 0
;;
worker)
Expand Down

0 comments on commit fcc36b5

Please sign in to comment.