refactor(docker): remove Keycloak and PostgreSQL services from production configuration

- Deleted PostgreSQL and Keycloak service definitions from docker-compose.prod.yml to streamline the deployment configuration.
- Updated README.md with new build arguments for API and Keycloak URLs.
- Adjusted Dockerfile.prod to ensure proper ownership for the application directory.

This change simplifies the production setup by removing unnecessary services.
This commit is contained in:
2026-05-21 17:43:25 -05:00
parent 60d552da59
commit 6ce3bccf85
3 changed files with 5 additions and 124 deletions

View File

@@ -152,8 +152,8 @@ docker build -t dev.aduanasoft.com/anexo76/backend:latest -f ./backend/Dockerfil
```
docker build \
--build-arg VITE_API_URL=https://anexo76-dev.aduanasoft.com/api/ \
--build-arg VITE_KEYCLOAK_URL=https://anexo76-dev.aduanasoft.com/kcauth/ \
--build-arg VITE_API_URL=http://10.47.80.196:3467/api/ \
--build-arg VITE_KEYCLOAK_URL=http://10.47.80.196/kcauth/ \
--build-arg INTERNAL_API_URL=http://backend:3467/api/ \
-t dev.aduanasoft.com/anexo76/frontend:latest \
-f ./frontend/Dockerfile.prod \