diff options
author | 2024-06-13 14:40:57 +0100 | |
---|---|---|
committer | 2024-06-13 14:40:57 +0100 | |
commit | 8403de058cfdd5ca0bcacdec3a668bbb63710685 (patch) | |
tree | 0f1612d7dab0fae168fcdc571213d578a7e0083e | |
parent | Bump pydantic from 2.7.1 to 2.7.3 (#234) (diff) |
Fix site startup command used in docker-compose.yml (#238)
Needed as entrypoint was changed in python-discord/site#1338
-rw-r--r-- | docker-compose.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index fd0ab9bf..7b463444 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -51,7 +51,7 @@ services: web: << : *restart_policy image: ghcr.io/python-discord/site:latest - command: ["run", "--debug"] + command: ["python", "manage.py", "run"] ports: - "8000:8000" tty: true |