From 60cf09e80004178f44b9f48fd104589d0772eb19 Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 20 Jul 2026 18:09:23 +0000 Subject: [PATCH 1/3] Update Patchmon/docker-compose.yml --- Patchmon/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Patchmon/docker-compose.yml b/Patchmon/docker-compose.yml index fa41c16..f79603a 100644 --- a/Patchmon/docker-compose.yml +++ b/Patchmon/docker-compose.yml @@ -1,6 +1,6 @@ # ============================================================================= # PatchMon Docker Compose - Production -# ============================================================================= +# ============================================================================= # To set up your environment, run the setup script: # # bash -c "$(curl -fsSL https://raw.githubusercontent.com/PatchMon/PatchMon/refs/heads/main/docker/setup-env.sh)" From 5257b3546bb29e224a419e1ece994bf5eaeed458 Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 20 Jul 2026 18:12:18 +0000 Subject: [PATCH 2/3] Update Patchmon/docker-compose.yml --- Patchmon/docker-compose.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Patchmon/docker-compose.yml b/Patchmon/docker-compose.yml index f79603a..2d2203c 100644 --- a/Patchmon/docker-compose.yml +++ b/Patchmon/docker-compose.yml @@ -26,7 +26,8 @@ services: ports: - "3000:3000" networks: - - patchmon-internal + - internal + - external depends_on: database: condition: service_healthy @@ -47,7 +48,7 @@ services: volumes: - postgres_data:/var/lib/postgresql/data networks: - - patchmon-internal + - internal healthcheck: test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] interval: 3s @@ -67,7 +68,7 @@ services: volumes: - redis_data:/data networks: - - patchmon-internal + - internal healthcheck: test: ["CMD", "redis-cli", "--no-auth-warning", "-a", "${REDIS_PASSWORD}", "ping"] interval: 3s @@ -92,7 +93,8 @@ services: mem_limit: 512m cpus: '1.0' networks: - - patchmon-internal + - internal + - external healthcheck: test: ["CMD-SHELL", "nc -z localhost 4822 || exit 1"] interval: 10s @@ -110,5 +112,7 @@ volumes: redis_data: networks: - patchmon-internal: - driver: bridge + internal: + external: true # Tells Compose not to create this network + external: + external: true # Tells Compose not to create this network From b3db1f6348c548ea8993673b26d2ea7e900351ea Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 20 Jul 2026 18:27:37 +0000 Subject: [PATCH 3/3] Update Patchmon/.env --- Patchmon/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Patchmon/.env b/Patchmon/.env index d71b128..9acd765 100644 --- a/Patchmon/.env +++ b/Patchmon/.env @@ -18,7 +18,7 @@ # Example: #CORS_ORIGIN=https://patchmon.domain.tld,http://patchmon.local:3000 -CORS_ORIGIN=https://patch.mikemcfetridge.com,http://192.168.2.3:3000,http://localhost:3000 +CORS_ORIGIN=https://patch.mikemcfetridge.com,http://192.168.2.14:3000,http://localhost:3000 JWT_SECRET=b552dcd09a958144ee3e436acd09767574fba73d2f4237496c97e6d2d59d2b6d4575d0148a3869276130d505492e73c023d40c090c42780fb611d0be9c29f4dc # ==============================================================================