diff options
Diffstat (limited to '')
| -rw-r--r-- | docker-compose.yml | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index ca4a2aff..0cc3ac4d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,19 +8,22 @@ services:      init: true      restart: always +    depends_on: +      - redis      environment:        - SEASONALBOT_TOKEN=${SEASONALBOT_TOKEN}        - SEASONALBOT_DEBUG=${SEASONALBOT_DEBUG} +      - SEASONALBOT_GUILD=${SEASONALBOT_GUILD} +      - SEASONALBOT_ADMIN_ROLE_ID=${SEASONALBOT_ADMIN_ROLE_ID} +      - CHANNEL_DEVLOG=${CHANNEL_DEVLOG} +      - CHANNEL_SEASONALBOT_COMMANDS=${CHANNEL_SEASONALBOT_COMMANDS}        - REDIS_HOST=redis -    # - SEASONALBOT_GUILD= -    # - SEASONALBOT_ADMIN_ROLE_ID= -    # - CHANNEL_ANNOUNCEMENTS= -    # - CHANNEL_DEVLOG=      volumes:        - /opt/pythondiscord/seasonalbot/log:/bot/bot/log        - /opt/pythondiscord/seasonalbot/data:/bot/data +      - .:/bot    redis:      image: redis:latest  |