Subir archivos a "/"
This commit is contained in:
19
docker-compose.dev.yml
Normal file
19
docker-compose.dev.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
Reference in New Issue
Block a user