Sha256: 49f1dfc2bd789b9552ac5cd0bccd9d08ee5a687529a6e7c02230ef711c236dc5

Contents?: true

Size: 684 Bytes

Versions: 1

Compression:

Stored size: 684 Bytes

Contents

---
version: "3.7"
services:
  redis:
    image: redis:alpine
    restart: always
  discord-command-bot:
    image: fortressone/discord-bot:latest
    command: "server"
    restart: always
    depends_on:
      - redis
    volumes:
      - type: bind
        source: /home/ubuntu/.config/qwtf_discord_bot/config.yaml
        target: /discord-bot/config.yaml
  discord-watcher-bot:
    image: fortressone/discord-bot:latest
    command: "watcher"
    restart: always
    depends_on:
      - redis
    environment:
      - REDIS_URL=redis://redis
    volumes:
      - type: bind
        source: /home/ubuntu/.config/qwtf_discord_bot/config.yaml
        target: /discord-bot/config.yaml

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
qwtf_discord_bot-4.2.2 docker-compose.yml