aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-04-07 19:26:38 +0200
committerGravatar Johannes Christ <[email protected]>2019-04-07 19:26:38 +0200
commitf41a56fb3fd12d5b8ffee12b81916eee3c7e641e (patch)
tree3a637349774dfecbaabef4360cb2a9491985ba85 /docker-compose.yml
parentAddress review by @lemonsaurus (diff)
Remove bot from compose setup, move staticfiles to writable directory.
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml8
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: