diff options
| author | 2020-05-31 09:12:53 +0300 | |
|---|---|---|
| committer | 2020-05-31 09:12:53 +0300 | |
| commit | 9717fb4256f980ccdd9ee8145443a8ef5ad6bf1b (patch) | |
| tree | 324b6822e50eae6b25e6f5e11d967f19aebe6346 /docker-compose.yml | |
| parent | Source: Direct aliases to their original commands (diff) | |
| parent | Merge branch 'master' into source-command (diff) | |
Merge remote-tracking branch 'origin/source-command' into source-command
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 |