Subir archivos a "/"

This commit is contained in:
2025-12-23 16:54:07 +00:00
commit b02694d9ff
222 changed files with 17869 additions and 0 deletions

19
docker-compose.dev.yml Normal file
View 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