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-10 00:26:15 +02:00
parent 5cd8157904
commit f3951f5be1

View File

@ -174,7 +174,7 @@ app = FastAPI(
description="Backend for next-gen sample management system", description="Backend for next-gen sample management system",
version=project_version, version=project_version,
servers=[ servers=[
{"url": "https://mx-aare-test.psi.ch:1492", "description": "Default server"} {"url": "https://mx-aare-test.psi.ch:8000", "description": "Default server"}
], ],
) )
# Apply CORS middleware # Apply CORS middleware