Files
2026-05-31 12:54:15 +03:00

12 lines
307 B
YAML

services:
web:
build: .
ports:
- "2305:5000"
volumes:
# Persist visitor_count.json across container restarts.
# Think of this like the /boot partition on your Pi —
# it survives even when everything else is wiped.
- ./data:/app/data
restart: unless-stopped