services: quickawards: build: context: . dockerfile: Dockerfile container_name: quickawards restart: unless-stopped ports: - "3001:3001" environment: # Application settings NODE_ENV: production PORT: 3001 LOG_LEVEL: info # Security - IMPORTANT: Change these in production! JWT_SECRET: ${JWT_SECRET:-change-this-in-production} # CORS - Set to your domain in production VITE_APP_URL: ${VITE_APP_URL:-} ALLOWED_ORIGINS: ${ALLOWED_ORIGINS:-} volumes: # Host-mounted database directory # Database will be created at ./data/award.db on first startup - ./data:/data healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3001/api/health"] interval: 30s timeout: 10s retries: 3 start_period: 40s