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