Sha256: 02cf4e7338d980c8a5c078466fec035ae238f421c4c0f4996fd12afbe5767207

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

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
  discord-pug-bot:
    image: fortressone/discord-bot:latest
    command: pug
    restart: always
    depends_on:
      - redis
    environment:
      - REDIS_URL=redis://redis
      - RESULTS_API_URL
      - RESULTS_APP_URL
    volumes:
      - type: bind
        source: "/home/ubuntu/.config/qwtf_discord_bot/config.yaml"
        target: /discord-bot/config.yaml
  discord-dashboard-bot:
    image: fortressone/discord-bot:latest
    command: dashboard
    restart: always
    depends_on:
      - redis
    environment:
      - REDIS_URL=redis://redis
      - RESULTS_API_URL
    volumes:
      - type: bind
        source: "/home/ubuntu/.config/qwtf_discord_bot/config.yaml"
        target: /discord-bot/config.yaml

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
qwtf_discord_bot-6.3.1 docker-compose.yml
qwtf_discord_bot-6.3.0 docker-compose.yml
qwtf_discord_bot-6.2.2 docker-compose.yml