services: app: image: node:20-alpine working_dir: /usr/src/app command: sh -c "npm install && npm run dev" ports: - "3000:3000" environment: - PORT=3000 volumes: - .:/usr/src/app - /usr/src/app/node_modules restart: unless-stopped