dockerfiles

This commit is contained in:
Marco
2024-07-28 19:21:51 +01:00
parent 60489fa334
commit f88eb65384
6 changed files with 40 additions and 14 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: "3"
services:
geradoresws:
build: .
ports:
- "5000:8080"
networks:
- app-network
geradoresfe:
build: ./geradoresfe
ports:
- "3000:3000"
depends_on:
- geradoresws
environment:
- REACT_APP_API_URL=http://localhost:5000/
networks:
- app-network
networks:
app-network:
driver: bridge