Fix: Bind wws to 0.0.0.0 for container networking

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 <noreply@anthropic.com>
This commit is contained in:
2025-12-15 05:51:25 +01:00
parent d851cef125
commit cc813e1238

View File

@@ -7,5 +7,6 @@ COPY . .
EXPOSE 8080 EXPOSE 8080
# The wws image already has an entrypoint, just use the path # Run wws with explicit host binding to 0.0.0.0 for container networking
CMD ["/app"] ENTRYPOINT ["wws"]
CMD ["--host", "0.0.0.0", "/app"]