feat(docker): update web service port mapping and remove api service port configuration

This commit is contained in:
Stevan Freeborn
2026-03-11 12:31:24 -05:00
parent cd69cea2ac
commit 6bf7499981
+1 -3
View File
@@ -2,15 +2,13 @@ services:
web:
image: ${DOCKERHUB_USERNAME}/fiscalos-web:${IMAGE_TAG:-latest}
ports:
- "80:80"
- "8081:80"
depends_on:
- api
restart: unless-stopped
api:
image: ${DOCKERHUB_USERNAME}/fiscalos-api:${IMAGE_TAG:-latest}
ports:
- "8080:8080"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- AppDbContextOptions__DatabaseFilePath=/data/fiscalos.db