19 lines
440 B
YAML
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 |