Skip to content

Commit

Permalink
Fix wrong env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
leepeuker authored Dec 27, 2024
1 parent fa06eed commit c716999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings/supervisor/database-migrate.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[program:movay-database-migrate]
command=bash -c 'if [ "$DISABLE_DATABASE_AUTO_MIGRATION" != "true" ]; then /usr/local/bin/php /app/bin/console.php database:migration:migrate; else echo "Database migration is disabled"; fi'
command=bash -c 'if [ "$DATABASE_DISABLE_AUTO_MIGRATION" != "true" ]; then /usr/local/bin/php /app/bin/console.php database:migration:migrate; else echo "Database migration is disabled"; fi'
numprocs=1
user=application
autostart=true
Expand Down

0 comments on commit c716999

Please sign in to comment.