services: app: build: context: . dockerfile: Dockerfile ports: - "8080:8080" volumes: - ./data:/app/data - ./public:/app/public:ro environment: - NODE_ENV=production - PORT=8080 restart: unless-stopped healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080/api/settings"] interval: 30s timeout: 3s retries: 3 start_period: 5s