version: "3.8" services: app: build: . ports: - "5556:5556" volumes: - ./data:/app/data - ./src/web:/app/src/web environment: - DATABASE_URL=sqlite:///./data/enduro.db - TILES_DIR=/app/data/terrain healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5556/health"] interval: 30s timeout: 5s retries: 3