Novo site

This commit is contained in:
Marco Santos
2025-03-05 01:07:29 +00:00
parent 7d7657f203
commit 471559ccb7
162 changed files with 8335 additions and 1769 deletions

View File

@@ -1,14 +1,22 @@
version: "3.8"
services:
geradoresws:
build: .
build:
context: . # Caminho para a pasta do Dockerfile do backend
dockerfile: Dockerfile
image: docker.io/shini89/geradoresws:latest
ports:
- "5050:8080"
networks:
- app-network
environment:
- ASPNETCORE_ENVIRONMENT=Production # Variavel de ambiente para o backend
geradoresfe:
build: ./geradoresfe
build:
context: ./geradoresfe # Caminho para a pasta do Dockerfile do frontend
dockerfile: Dockerfile
image: docker.io/shini89/geradoresfe:latest
ports:
- "3000:3000"
depends_on:
@@ -21,4 +29,4 @@ services:
networks:
app-network:
driver: bridge
driver: bridge