EVEInsight / Insight

Discord bot providing PvP activity tracking, intel, and utilities for the game EVE Online.
GNU General Public License v3.0
31 stars 21 forks source link

Docker-Compose text #28

Closed ScotDex closed 2 years ago

ScotDex commented 2 years ago

Commented out the stack commands to convert it into compose file - hopefully useful.

======= version: '3.1' services: insight: image: nathanls/insight:latest

deploy:

#mode: replicated
#replicas: 1
# restart_policy:
#condition: any
environment:
  DB_DRIVER: "sqlite3"
  SQLITE_DB_PATH: ""
  HEADERS_FROM_EMAIL: ""
  DISCORD_TOKEN: ""
  CCP_CLIENT_ID: ""
  CCP_SECRET_KEY: ""
  CCP_CALLBACK_URL: ""
  REDIS_HOST: "redis"
  REDIS_PORT: 6379
  REDIS_PASSWORD: "pass"
  REDIS_PURGE: "FALSE"
  REDIS_SSL: "FALSE"
  INSIGHT_ADMINS: "*****; AnotherAdminUserID"
  WEBSERVER_ENABLED: "FALSE"
volumes:
  - insight-data:/app
    #networks:
    #- insight-net

redis: image: redis:6

deploy:

#mode: replicated
#replicas: 1
#restart_policy:
# condition: any
#networks:
  #- insight-net
command: --requirepass "pass"
#networks:
#insight-net:
#driver: overlay

volumes: insight-data: