mirror of
https://github.com/a-sync/game-server-watcher.git
synced 2026-03-31 06:24:19 -04:00
29 lines
656 B
YAML
29 lines
656 B
YAML
version: "3"
|
|
services:
|
|
|
|
gsw:
|
|
build: .
|
|
# image: "ghcr.io/a-sync/game-server-watcher:latest"
|
|
container_name: gsw
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- DBG=0
|
|
- REFRESH_TIME_MINUTES=2
|
|
- DATA_PATH=/data/
|
|
- SECRET=secret
|
|
- DISCORD_BOT_TOKEN=
|
|
- TELEGRAM_BOT_TOKEN=
|
|
- SLACK_BOT_TOKEN=
|
|
- SLACK_APP_TOKEN=
|
|
- STEAM_WEB_API_KEY=
|
|
# env_file:
|
|
# - .env.example
|
|
# - .env
|
|
restart: unless-stopped
|
|
volumes:
|
|
- "gsw_data:/data"
|
|
|
|
volumes:
|
|
gsw_data: {}
|