From 7b0bcec8f3f7073aef1596e057eda5eaac0a91c0 Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Mon, 9 Feb 2026 03:43:47 +1100 Subject: [PATCH] docs(docker): use the default port in docker run command --- docs/deploying/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying/docker.md b/docs/deploying/docker.md index 520bea06..4d75b609 100644 --- a/docs/deploying/docker.md +++ b/docs/deploying/docker.md @@ -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 \ -v db:/var/lib/tuwunel/ \ -e TUWUNEL_SERVER_NAME="your.server.name" \ -e TUWUNEL_ALLOW_REGISTRATION=false \