diff options
author | 2022-05-06 22:41:23 +0300 | |
---|---|---|
committer | 2022-05-06 22:41:23 +0300 | |
commit | 5ec6cc5fa647b4528ea817d4d09846aa8b0ff219 (patch) | |
tree | 17bf57e72caa0fcf8395fd028a868c74eeb3e79a | |
parent | Merge pull request #351 from python-discord/dependabot/npm_and_yarn/typescrip... (diff) |
Set Compose Backend Start Command
Updates the command used for the backend in the compose
to the development one.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | docker-compose.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index 1e4c405..b22c559 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -19,6 +19,7 @@ services: backend: image: ghcr.io/python-discord/forms-backend + command: ["uvicorn", "--reload", "--host", "0.0.0.0", "--debug", "backend:app"] depends_on: - mongo - snekbox |