services: app: image: node:20-alpine working_dir: /app ports: - "3000:3000" volumes: - .:/app - /app/node_modules command: sh -c "npm install && npm run dev"