12 lines
307 B
YAML
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
|