16 lines
306 B
YAML
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:
|