diff options
| author | 2020-06-10 02:32:39 +0100 | |
|---|---|---|
| committer | 2020-06-10 02:32:39 +0100 | |
| commit | 6080e77a35ee7c293c73394ab3256c47b548ab4c (patch) | |
| tree | dd3ddc076c408290f0aa5f7d138f416a22017771 /docker-compose.yml | |
| parent | ModLog: ignore DMs in the message delete listener (diff) | |
| parent | Add Python Atlanta to guild whitelists (diff) | |
Merge branch 'master' into bug/mod/932/modlog-ignore-dms
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/docker-compose.yml b/docker-compose.yml index 11deceae8..9884e35f0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,6 +12,11 @@ services:        POSTGRES_PASSWORD: pysite        POSTGRES_USER: pysite +  redis: +    image: redis:5.0.9 +    ports: +      - "127.0.0.1:6379:6379" +    web:      image: pythondiscord/site:latest      command: ["run", "--debug"] @@ -41,6 +46,7 @@ services:      tty: true      depends_on:        - web +      - redis      environment:        BOT_TOKEN: ${BOT_TOKEN}        BOT_API_KEY: badbot13m0n8f570f942013fc818f234916ca531 | 
