Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/deploying/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OCI images for tuwunel are available in the registries listed below.
When you have the image you can simply run it with

```bash
docker run -d -p 8448:6167 \
docker run -d -p 8448:8008 \
Copy link

Copilot AI Feb 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change updates the docker run example to use the default internal port (8008), but the PR description proposes removing all 6167 references. The repo still contains multiple 6167 references in the docker-compose examples and reverse-proxy docs, so either (a) broaden this PR to update those references as well, or (b) narrow/clarify the PR description/scope to just the docker run example to avoid documentation inconsistency for readers switching between docker run and the provided compose files.

Copilot uses AI. Check for mistakes.
-v db:/var/lib/tuwunel/ \
-e TUWUNEL_SERVER_NAME="your.server.name" \
-e TUWUNEL_ALLOW_REGISTRATION=false \
Expand Down
Loading