services: clock-app: image: node:21 working_dir: /app volumes: - ./:/app command: sh -c "npm install && npm run build && npm start" ports: - "3007:3000" restart: unless-stopped