From 503d877a9495bd0caafd6624196346d418150204 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Thu, 23 Apr 2026 11:19:12 +0700 Subject: [PATCH] chore: comment out port mapping in docker-compose MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match word2sim's pattern — port stays unexposed by default; caller uncomments only if they want to reach the service from the host. Keeps it network-internal-friendly when run behind a reverse proxy on the same compose network. --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 64d913e..b289169 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,9 @@ services: phow2sim: build: . container_name: phow2sim - ports: - - "8001:8000" + # uncomment to expose this port on the host + # ports: + # - "8001:8000" environment: # URL serving the PhoW2V zip with a plain GET. Any auth goes in # the URL itself (share token, signed URL, etc.) — the service