From af51428fc23948b5935e8461991b72de7ea30fec Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Wed, 9 Apr 2025 23:39:27 +0200 Subject: [PATCH] Refactor Docker setup and migrate to PostgreSQL Streamlined Dockerfiles with clearer ENV variables and build args. Switched backend database from MySQL to PostgreSQL, updated configurations accordingly, and added robust Docker Compose services for better orchestration, including health checks and persistent storage. --- backend/config_prod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/config_prod.json b/backend/config_prod.json index e5368c4..7b4d543 100644 --- a/backend/config_prod.json +++ b/backend/config_prod.json @@ -1,7 +1,7 @@ { "ssl_cert_path": "/app/backend/ssl/mx-aare-test.psi.ch.pem", "ssl_key_path": "/app/backend/ssl/mx-aare-test.psi.ch.key", - "OPENAPI_URL": "https://mx-aare-test.psi.ch:1492/openapi.json", + "OPENAPI_URL": "https://backend:1492/openapi.json", "SCHEMA_PATH": "/app/src/openapi.json", "OUTPUT_DIRECTORY": "/app/openapi", "PORT": 1492,