From 42291f61b82ff70163047b3f1dd5c1c482508a29 Mon Sep 17 00:00:00 2001 From: aygea Date: Tue, 28 Jul 2026 14:13:04 -0700 Subject: [PATCH] Switch host port to 31415 (obscure; keep low ports free) Co-Authored-By: Claude --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index e917953..bc068b1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,6 +8,6 @@ services: container_name: llm-benchmark restart: unless-stopped ports: - - "0.0.0.0:8081:80" # bind all interfaces:8081 -> container :80 + - "0.0.0.0:31415:80" # bind all interfaces:31415 -> container :80 (obscure port; Netbird proxies in front) # Re-tag the image so `docker compose up` after a code change rebuilds it. # (compose detects Dockerfile/context changes and rebuilds automatically.)