From 856de2587528f19af272ec9d176253b42124ca58 Mon Sep 17 00:00:00 2001 From: Erskin Cherry Date: Mon, 11 May 2026 16:19:52 -0400 Subject: [PATCH] REG-22126 fix standalone docker port mapping to match :latest image The current regscale/regscale:latest image (rebuilt 2026-05-05) sets ASPNETCORE_URLS=http://+:80 and listens on container port 80, but the standalone compose files mapped host 80 to container 8080, so the UI was unreachable on http://localhost after a fresh install. Aligns both standalone compose files (docker-compose.yml and the azure-sql-edge variant, which uses the same regscale/regscale:latest image) with the image's actual listener port. Verified by Jim Townsend end-to-end: changing this mapping restored UI access against the current :latest image. --- standalone/docker-compose-azure-sql-edge.yml | 2 +- standalone/docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/standalone/docker-compose-azure-sql-edge.yml b/standalone/docker-compose-azure-sql-edge.yml index 7fc2da7..6183b52 100644 --- a/standalone/docker-compose-azure-sql-edge.yml +++ b/standalone/docker-compose-azure-sql-edge.yml @@ -23,7 +23,7 @@ services: networks: - atlas_net ports: - - "80:8080" + - "80:80" volumes: - atlasvolume:/atlas/files env_file: diff --git a/standalone/docker-compose.yml b/standalone/docker-compose.yml index 0740f99..fc7c48f 100644 --- a/standalone/docker-compose.yml +++ b/standalone/docker-compose.yml @@ -23,7 +23,7 @@ services: networks: - atlas_net ports: - - "80:8080" + - "80:80" volumes: - atlasvolume:/atlas/files env_file: