From 13deea7f3f7f404e424c54560ed423a08ccc65b0 Mon Sep 17 00:00:00 2001 From: alireza Date: Tue, 9 Jun 2026 01:41:49 +0330 Subject: [PATCH] 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. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 94e3a7e..d7c632b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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`)"