services: nodejs: image: node:latest container_name: node_app working_dir: /app volumes: - ./:/app ports: - "80:5173" command: > sh -c "npm i -g npm@latest && npm i && npm run dev"