Remove port mappings for internal services - will use nginx proxy manager
All checks were successful
build-and-deploy / build (push) Successful in 8s
build-and-deploy / deploy (push) Successful in 4s

This commit is contained in:
2025-09-06 17:04:36 -06:00
parent 089c4124f6
commit 1c28eef6d6

View File

@@ -4,8 +4,8 @@ services:
amigos-app: amigos-app:
image: gitea.nucleoriofrio.com/nucleo000/amigos-app:latest image: gitea.nucleoriofrio.com/nucleo000/amigos-app:latest
container_name: amigos-app container_name: amigos-app
ports: expose:
- "3001:3001" - "3001"
environment: environment:
- MONGO_HOST=mongodb-local - MONGO_HOST=mongodb-local
- PORT=3001 - PORT=3001
@@ -17,8 +17,8 @@ services:
mongodb: mongodb:
image: mongo:latest image: mongo:latest
container_name: mongodb-local container_name: mongodb-local
ports: expose:
- "27017:27017" - "27017"
environment: environment:
- MONGO_INITDB_ROOT_USERNAME=admin - MONGO_INITDB_ROOT_USERNAME=admin
- MONGO_INITDB_ROOT_PASSWORD=MongoPass2024! - MONGO_INITDB_ROOT_PASSWORD=MongoPass2024!