diff options
author | 2020-05-16 12:23:52 +0200 | |
---|---|---|
committer | 2020-05-16 12:23:52 +0200 | |
commit | 3aeb9e6ac6258fe3446788fc8a731fc8bb5922d4 (patch) | |
tree | 62f6bd8fb57e3046cfa8ca032b3710b2318aa274 | |
parent | Remove @Admins ping from the #verification message (diff) |
Adding redis to docker-compose file.
This is almost hilariously easy since we can just use
the official image for it.
-rw-r--r-- | docker-compose.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 11deceae8..1bcf1008e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,6 +12,9 @@ services: POSTGRES_PASSWORD: pysite POSTGRES_USER: pysite + redis: + image: redis:5.0.9 + web: image: pythondiscord/site:latest command: ["run", "--debug"] @@ -41,6 +44,7 @@ services: tty: true depends_on: - web + - redis environment: BOT_TOKEN: ${BOT_TOKEN} BOT_API_KEY: badbot13m0n8f570f942013fc818f234916ca531 |