services: app: build: context: . dockerfile: Dockerfile expose: - "3000" volumes: - eventy_data:/app/data environment: - PORT=3000 - ADMIN_PASSWORD=${ADMIN_PASSWORD:-123456} - NODE_ENV=production restart: unless-stopped healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/health"] interval: 30s timeout: 3s retries: 3 start_period: 10s volumes: eventy_data: