services: node-app: image: node:24-alpine container_name: node-bugado working_dir: /app volumes: - ./app.js:/app/app.js command: node app.js ports: - "3000:3000" restart: always healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/health"] interval: 2s timeout: 2s retries: 2 start_period: 5s