diff options
| author | 2020-06-26 04:13:12 -0400 | |
|---|---|---|
| committer | 2020-06-26 04:13:12 -0400 | |
| commit | bceffa49c85889e3d04304042a5666af0157c126 (patch) | |
| tree | bb7ce148cad87c149af695d0d245fd8fab6d549e /docker-compose.yml | |
| parent | In LinePaginator, truncate words that exceed scale_to_size (diff) | |
| parent | Merge pull request #1002 from python-discord/bug/backend/bot-50/sync-ignore-g... (diff) | |
Merge branch 'master' into issue926-paginate-long-lines
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/docker-compose.yml b/docker-compose.yml index 9884e35f0..cff7d33d6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,6 +17,14 @@ services:      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"] @@ -47,6 +55,7 @@ services:      depends_on:        - web        - redis +      - snekbox      environment:        BOT_TOKEN: ${BOT_TOKEN}        BOT_API_KEY: badbot13m0n8f570f942013fc818f234916ca531 | 
