-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (26 loc) · 656 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (26 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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: {}