Skip to content

Commit

Permalink
Fix debug option
Browse files Browse the repository at this point in the history
  • Loading branch information
sambles committed Apr 3, 2024
1 parent 65baca5 commit 17d65ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/plat2-v2.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ volumes:
filestore-OasisData:

x-server-env: &server-env
OASIS_DEBUG: 1
OASIS_DEBUG: ${DEBUG:-0}
OASIS_URL_SUB_PATH: 0
OASIS_CELERY_BROKER_URL: "amqp://rabbit:rabbit@broker:5672"
OASIS_SERVER_DB_HOST: server-db
Expand All @@ -26,7 +26,7 @@ x-server-env: &server-env
OASIS_TASK_CONTROLLER_QUEUE: task-controller # New option v2.3.1+

x-worker-env: &worker-env
OASIS_DEBUG: 1
OASIS_DEBUG: ${DEBUG:-0}
OASIS_CELERY_BROKER_URL: "amqp://rabbit:rabbit@broker:5672"
OASIS_CELERY_DB_ENGINE: db+postgresql+psycopg2
OASIS_CELERY_DB_HOST: celery-db
Expand Down

0 comments on commit 17d65ed

Please sign in to comment.