From 2011435f51cee43eb0b20a73a42bc94eb4201c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AD=E5=BE=8B=E3=81=93?= <76961348+nelvko@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:58:06 +0800 Subject: [PATCH] docs: delete unnecessary options. (#5599) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind documentation #### What this PR does / why we need it: 同时使用 `-it` 和 `-d`,`-d` 会覆盖 `-it`,容器将会在后台运行,而 `-it` 参数请求的交互式会话和伪终端不会生效。 #### Which issue(s) this PR fixes: #### Special notes for your reviewer: #### Does this PR introduce a user-facing change? ```release-note None ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21db10533c..ced20d3358 100755 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ ## 快速开始 ```bash -docker run -it -d --name halo -p 8090:8090 -v ~/.halo2:/root/.halo2 halohub/halo:2.13 +docker run -d --name halo -p 8090:8090 -v ~/.halo2:/root/.halo2 halohub/halo:2.13 ``` 以上仅作为体验使用,详细部署文档请查阅: