From cc813e1238ac1ce1cc0e55c394fe1047dda85139 Mon Sep 17 00:00:00 2001 From: christiankrag Date: Mon, 15 Dec 2025 05:51:25 +0100 Subject: [PATCH] Fix: Bind wws to 0.0.0.0 for container networking MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The wws server was binding to 127.0.0.1 by default, which doesn't allow external connections. Explicitly set --host 0.0.0.0. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 806b217..6fb516c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,6 @@ COPY . . EXPOSE 8080 -# The wws image already has an entrypoint, just use the path -CMD ["/app"] +# Run wws with explicit host binding to 0.0.0.0 for container networking +ENTRYPOINT ["wws"] +CMD ["--host", "0.0.0.0", "/app"]