From 6f22cc981ea2f008f9891c1a9e604ea7183201d4 Mon Sep 17 00:00:00 2001 From: Sascha Marcel Hacker Date: Sat, 27 Apr 2024 21:57:24 +0200 Subject: [PATCH 1/2] Update docker-compose.yml Change postgreSQL connection string --- docker-compose/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 0521cf03f..3883c7893 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -39,5 +39,5 @@ services: # If using SQL Server, change the connection string to point to your SQL Server instance. - Remotely_ConnectionStrings__SQLServer=Server=(localdb)\\mssqllocaldb;Database=Remotely-Server-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true # If using PostgreSQL, change the connection string to point to your PostgreSQL instance. - - Remotely_ConnectionStrings__PostgreSQL=Server=Host=localhost;Database=Remotely;Username=postgres; - \ No newline at end of file + - Remotely_ConnectionStrings__PostgreSQL=Host=localhost;Database=Remotely;Username=postgres; + From d5ae94a40710eac55c5cb65a69872f9cff40aea7 Mon Sep 17 00:00:00 2001 From: Sascha Marcel Hacker Date: Sat, 27 Apr 2024 22:00:49 +0200 Subject: [PATCH 2/2] Update docker-compose.yml add password for postgreSQL connection string --- docker-compose/docker-compose.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 3883c7893..531a5a252 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -39,5 +39,4 @@ services: # If using SQL Server, change the connection string to point to your SQL Server instance. - Remotely_ConnectionStrings__SQLServer=Server=(localdb)\\mssqllocaldb;Database=Remotely-Server-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true # If using PostgreSQL, change the connection string to point to your PostgreSQL instance. - - Remotely_ConnectionStrings__PostgreSQL=Host=localhost;Database=Remotely;Username=postgres; - + - Remotely_ConnectionStrings__PostgreSQL=Host=localhost;Database=Remotely;Username=postgres;Password=changeme;