diff options
| author | 2020-05-30 15:28:37 +0200 | |
|---|---|---|
| committer | 2020-05-30 15:28:37 +0200 | |
| commit | 2f7a8862bb82892275800fc216373a5c73154b66 (patch) | |
| tree | 03e4756bd9b67dfb92b33791065190106dfc5492 /docker-compose.yml | |
| parent | AntiMalware tests - Switched from monkeypatch to unittest.patch (diff) | |
| parent | Merge pull request #972 from Numerlor/tag-encoding (diff) | |
Merge branch 'master' into test_antimalware
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  |