Files
endpoin/docker-compose.dev.yml
2025-12-23 16:54:07 +00:00

19 lines
440 B
YAML

services:
frontend:
image: node:20-alpine
working_dir: /app
container_name: contol-mve-frontend
ports:
- "5173:5173"
environment:
- VITE_API_BASE_URL=${VITE_API_URL}
volumes:
- ./:/app
- /app/node_modules
command: sh -c "npm install && npm run dev -- --host"
networks:
- control-mve-frontend-network
networks:
control-mve-frontend-network:
driver: bridge