aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-07-09 18:07:51 +0100
committerGravatar Joe Banks <[email protected]>2024-07-09 18:07:51 +0100
commit293776e36a7a4079fd9dc6721292fef70cecdfd2 (patch)
tree42ae63d002443e253ce71e4e57b37a31dfb601e2
parentMigration to official Sentry release CI action (#633) (diff)
Update Compose setup with new backend run flags (removal of --debug)
-rw-r--r--docker-compose.yaml6
1 files changed, 2 insertions, 4 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml
index b22c559..87454e2 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -1,5 +1,3 @@
-version: "3.6"
-
services:
mongo:
image: mongo:latest
@@ -19,7 +17,7 @@ services:
backend:
image: ghcr.io/python-discord/forms-backend
- command: ["uvicorn", "--reload", "--host", "0.0.0.0", "--debug", "backend:app"]
+ command: ["uvicorn", "--reload", "--host", "0.0.0.0", "backend:app"]
depends_on:
- mongo
- snekbox
@@ -44,7 +42,7 @@ services:
- backend
volumes:
- .:/app:ro
- - /app/node_modules # Ensure dependencies do not collide with a user's local install
+ - /app/node_modules # Ensure dependencies do not collide with a user's local install
ports:
- "3000:3000"
environment: