From 7938f60a6917f0b122315ad48a40ea2aa5651966 Mon Sep 17 00:00:00 2001 From: DVK Date: Mon, 8 Jul 2024 15:40:38 +0800 Subject: [PATCH] docs: fix docker start command error (#95) --- .../00.start.md" | 2 +- .../01.install.md" | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git "a/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/00.start.md" "b/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/00.start.md" index 631f4a3..d0621b5 100644 --- "a/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/00.start.md" +++ "b/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/00.start.md" @@ -17,7 +17,7 @@ article: false ### 启动服务 -`$ docker run -it -d --net=host dvkunion/seamoon:latest proxy` +`$ docker run -it -d --net=host dvkunion/seamoon:latest client proxy` 如果一切正常,你将可以在 `http://localhost:7777` 访问到管理页面: diff --git "a/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/01.install.md" "b/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/01.install.md" index b12c386..e996865 100644 --- "a/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/01.install.md" +++ "b/docs/guide/01.\345\274\200\345\247\213\344\275\277\347\224\250/01.install.md" @@ -12,13 +12,13 @@ article: false 推荐使用 docker 一键部署client ```shell -$ docker run -it -d --net=host dvkunion/seamoon:latest proxy +$ docker run -it -d --net=host dvkunion/seamoon:latest client proxy ``` 默认使用`--net=host`模式,这样比较简单易懂。为了更高的安全性、可控性,你也可以自己选择映射: ```shell -$ docker run -it -d -p 127.0.0.1:7777:7777 -p 1080:1080 dvkunion/seamoon:latest proxy +$ docker run -it -d -p 127.0.0.1:7777:7777 -p 1080:1080 dvkunion/seamoon:latest client proxy ``` 这样可以将管理端口限制只能通过本地 `127.0.0.1` 访问,如果你需要限制为其他 IP,可以自行修改。