diff options
| author | 2020-10-02 10:05:03 -0700 | |
|---|---|---|
| committer | 2020-10-02 10:05:03 -0700 | |
| commit | acd8a58d0e3e9ed0b9ca5774deff042b61cd536b (patch) | |
| tree | a7c494b66b023c0dc71a0dfcaec9008622b5b068 /docker-compose.yml | |
| parent | (Snekbox Tests, discord.py 1.3.x Migrations): Fixed wrong assertion of help c... (diff) | |
| parent | Merge pull request #1205 from soumitradev/source_escape_markdown (diff) | |
Merge branch 'master' into discord-py-upgrade-migrate
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/docker-compose.yml b/docker-compose.yml index 11deceae8..cff7d33d6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,6 +12,19 @@ services:        POSTGRES_PASSWORD: pysite        POSTGRES_USER: pysite +  redis: +    image: redis:5.0.9 +    ports: +      - "127.0.0.1:6379:6379" + +  snekbox: +    image: pythondiscord/snekbox:latest +    init: true +    ipc: none +    ports: +     - "127.0.0.1:8060:8060" +    privileged: true +    web:      image: pythondiscord/site:latest      command: ["run", "--debug"] @@ -41,6 +54,8 @@ services:      tty: true      depends_on:        - web +      - redis +      - snekbox      environment:        BOT_TOKEN: ${BOT_TOKEN}        BOT_API_KEY: badbot13m0n8f570f942013fc818f234916ca531 | 
