diff options
-rw-r--r-- | docker-compose.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 2d3e8f3b..a74b1140 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,13 +10,6 @@ version: "3.6" services: - bot: - image: pythondiscord/bot:django - environment: - BOT_TOKEN: ${BOT_TOKEN?bot token needs to be set} - # Set me once you configured me in the Django Admin! - BOT_API_KEY: ${BOT_API_KEY} - postgres: image: postgres:11-alpine environment: @@ -39,5 +32,6 @@ services: DATABASE_URL: postgres://pysite:supersecretpassword@postgres/pysite DEBUG: "true" SECRET_KEY: suitable-for-development-only + STATIC_ROOT: /tmp/staticfiles # vim: sw=2 ts=2: |