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:
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user