services: web: container_name: moving-helper image: "code.wanderingbadger.dev/tliu93/2026-moving-helper:latest" build: context: . user: "${UID:-1000}:${GID:-1000}" ports: - "${PORT:-10000}:${PORT:-10000}" environment: HOST: ${HOST:-0.0.0.0} PORT: ${PORT:-10000} DATABASE_URL: ${DATABASE_URL:-sqlite:////app/data/app.db} volumes: - ${DATA_DIR:-./data}:/app/data restart: unless-stopped