From f8e3b3c9e600e20cd849a7e003b5c161a407bd78 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Sun, 22 Mar 2026 05:24:53 +0000 Subject: [PATCH] Updates application host port mapping Changes the Docker Compose configuration to expose the application service on host port 8012. This adjusts the external access point, while the application continues to run internally on port 8080. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index db8420a..3ecbcc5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,5 +2,5 @@ services: app: build: . ports: - - "8080:8080" + - "8012:8080" restart: unless-stopped