From 96839c849df67ed907a30cb644f8bc96e31efd69 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Thu, 4 Sep 2025 04:24:08 -0500 Subject: [PATCH] Fixing db container name. --- src/phsdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phsdb.js b/src/phsdb.js index 58f9c5a..a4f8fb9 100644 --- a/src/phsdb.js +++ b/src/phsdb.js @@ -1,7 +1,7 @@ // noinspection RequiredAttributes const { Pool } = require('pg'); -const connectionString = 'postgres://postgres:ab9cfz12@clr-db:5432/postgres'; +const connectionString = 'postgres://postgres:ab9cfz12@phs-db:5432/postgres'; const pgp = require('pg-promise')(); const pool = new Pool({ -- 2.43.0