From 4e0cf8c54c4dfd68edba7e733518846a47c55064 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 5 May 2026 14:52:36 -0500 Subject: [PATCH] refactor(docker compose): changed to have the correct url that will be used as this is for auth --- docker-compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9138fdd..ce585b2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: environment: - NODE_ENV=production - LOG_LEVEL=info - - EXTERNAL_URL=http://192.168.8.222:3600 + - URL=http://localhost:3600 - DATABASE_HOST=postgres # if running on the same docker then do this - DATABASE_PORT=5432 - DATABASE_USER=${DATABASE_USER} @@ -41,7 +41,10 @@ services: #for all host including prod servers, plc's, printers, or other de networks: - docker-network + - pgNetwork networks: docker-network: + external: true + pgNetwork: external: true \ No newline at end of file