Connection Timeout süresi 60 saniyeye çıkarıldı
This commit is contained in:
parent
a6a2c77eb6
commit
8a53c1e1c2
7 changed files with 13 additions and 9 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"ConnectionStrings": {
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;TrustServerCertificate=True;",
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;Encrypt=False;TrustServerCertificate=True;Connection Timeout=60;",
|
||||
"PostgreSql": "User ID=sa;Password=NvQp8s@l;Host=postgres;Port=5432;Database=Erp;"
|
||||
},
|
||||
"Redis": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"ConnectionStrings": {
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;TrustServerCertificate=True;",
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;Encrypt=False;TrustServerCertificate=True;Connection Timeout=60;",
|
||||
"PostgreSql": "User ID=sa;Password=NvQp8s@l;Host=postgres;Port=5432;Database=Erp;"
|
||||
},
|
||||
"Redis": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"Seed": false,
|
||||
"ConnectionStrings": {
|
||||
"SqlServer": "Server=localhost;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;TrustServerCertificate=True;",
|
||||
"SqlServer": "Server=localhost;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;Encrypt=False;TrustServerCertificate=True;Connection Timeout=60;",
|
||||
"PostgreSql": "User ID=sa;Password=NvQp8s@l;Host=localhost;Port=5432;Database=Erp;"
|
||||
},
|
||||
"Redis": {
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
"BaseDomain": "sozsoft.com"
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;TrustServerCertificate=True;",
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;Encrypt=False;TrustServerCertificate=True;Connection Timeout=60;",
|
||||
"PostgreSql": "User ID=sa;Password=NvQp8s@l;Host=postgres;Port=5432;Database=Erp;"
|
||||
},
|
||||
"Redis": {
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
"BaseDomain": "sozsoft.com"
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;TrustServerCertificate=True;",
|
||||
"SqlServer": "Server=sql;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;Encrypt=False;TrustServerCertificate=True;Connection Timeout=60;",
|
||||
"PostgreSql": "User ID=sa;Password=NvQp8s@l;Host=postgres;Port=5432;Database=Erp;"
|
||||
},
|
||||
"Redis": {
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
"Version": "1.0.1"
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"SqlServer": "Server=localhost;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;TrustServerCertificate=True;",
|
||||
"SqlServer": "Server=localhost;Database=Erp;User Id=sa;password=NvQp8s@l;Trusted_Connection=False;Encrypt=False;TrustServerCertificate=True;Connection Timeout=60;",
|
||||
"PostgreSql": "User ID=sa;Password=NvQp8s@l;Host=localhost;Port=5432;Database=Erp;"
|
||||
},
|
||||
"Redis": {
|
||||
|
|
|
|||
|
|
@ -36,15 +36,19 @@ services:
|
|||
- db
|
||||
sql:
|
||||
image: mcr.microsoft.com/mssql/server:2022-CU19-ubuntu-22.04
|
||||
container_name: kurs-platform-data-sql
|
||||
profiles: ["sql"]
|
||||
user: root
|
||||
environment:
|
||||
- SA_PASSWORD=NvQp8s@l
|
||||
- ACCEPT_EULA=Y
|
||||
- MSSQL_PID=Web
|
||||
- MSSQL_PID=Developer
|
||||
ports:
|
||||
- 1433:1433
|
||||
- "1433:1433"
|
||||
volumes:
|
||||
- mssql:/var/opt/mssql
|
||||
networks:
|
||||
- db
|
||||
db:
|
||||
aliases:
|
||||
- sql
|
||||
restart: unless-stopped
|
||||
|
|
|
|||
Loading…
Reference in a new issue