dws-city-res-solve/docker-compose.yml
2026-06-17 23:33:12 -04:00

16 lines
306 B
YAML

services:
web:
build: .
ports:
- "5555:8000"
environment:
- HOST=0.0.0.0
- PORT=8000
# Stored solves live on the mounted volume so they survive restarts.
- DB_PATH=/data/solves.db
volumes:
- solves:/data
restart: unless-stopped
volumes:
solves: