fix(docker-compose): rename connection string environment variable

Updated the connection string environment variable from `ConnectionStrings__Default` to `ConnectionStrings__ComplexConnection` to align with the application's expected configuration key.
This commit is contained in:
2026-06-09 01:41:49 +03:30
parent 3536ff62c1
commit 13deea7f3f

View File

@@ -7,7 +7,7 @@ services:
environment:
- TZ=Asia/Tehran
- ASPNETCORE_ENVIRONMENT=Production
- ConnectionStrings__Default=Server=sqlserver,1433;TrustServerCertificate=True;Database=ComplexDb;User Id=sa;Password=qwER12#$110;
- ConnectionStrings__ComplexConnection=Server=sqlserver,1433;TrustServerCertificate=True;Database=ComplexDb;User Id=sa;Password=qwER12#$110;
labels:
- "traefik.enable=true"
- "traefik.http.routers.complex.rule=Host(`complex.nabaksoft.ir`)"