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.
This commit is contained in:
GotthardG 2025-04-09 23:09:27 +02:00
parent 1052794a39
commit 1ba606132e

View File

@ -18,7 +18,7 @@ services:
depends_on: # ⬅️ New addition: wait until postgres is started depends_on: # ⬅️ New addition: wait until postgres is started
- postgres - postgres
healthcheck: healthcheck:
test: [ "CMD-SHELL", "curl -k -f https://localhost:8000/openapi.json || exit 1" ] test: [ "CMD-SHELL", "curl -k -f https://localhost:${PORT}/openapi.json || exit 1" ]
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 5 retries: 5