Sistema_Gestion_Transporte/docker/docker-compose.yml

19 lines
365 B
YAML
Raw Normal View History

2023-06-24 17:49:52 -04:00
version: "3"
name: transporte-frontend
services:
app:
image: node:18-alpine
volumes:
- ../:/app
ports:
- 3000:3000
environment:
- VITE_PORT=3000
2023-06-25 22:41:51 -04:00
- VITE_BACKEND=http://localhost:4000/api
2023-06-24 17:49:52 -04:00
working_dir: /app
command: sh -c "
[ ! -d node_modules ] && npm install ;
chmod -R o+w . ;
npm run dev
"