Sha256: 533e405997eb50ec73ccb37f03be5e037aef9edc12d91989746b850d455cbcfc

Contents?: true

Size: 676 Bytes

Versions: 1

Compression:

Stored size: 676 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
    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.1 docker-compose.yml