-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (28 loc) · 1.03 KB
/
docker-compose.yml
File metadata and controls
35 lines (28 loc) · 1.03 KB
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
29
30
31
32
33
34
35
services:
arcade_app:
container_name: arcade_app_alerter
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
# Map host port 5000 -> container port 5000 (web UI)
# If you change [web].port in config.ini, update this mapping.
ports:
- "5000:5000"
environment:
# Path inside container; host file is bind-mounted below
- ARCADE_APP_CONFIG=/config/arcade_app/config.ini
volumes:
# Config file: host -> container (read-only)
- /config/arcade_app/config.ini:/config/arcade_app/config.ini:ro
# Data directory for .ver files and lastcheck
- /config/arcade_app/data:/config/arcade_app/data
# Log file for all checkers + web dashboard
- /var/log/arcadecheck.log:/var/log/arcadecheck.log
- /mnt/downloads:/downloads
# If you want health status exposed via docker ps / docker inspect
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://127.0.0.1:5000/health || exit 1"]
interval: 1m
timeout: 5s
retries: 3