From cbd2f8b2ed49c557a086800d548372576497bdc4 Mon Sep 17 00:00:00 2001 From: Ryan Wang Date: Mon, 27 Feb 2023 22:46:15 +0800 Subject: [PATCH] docs: fix command of docker run (#3415) 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: 修复 Docker 快速运行的 `halo.security.initializer.superadminusername` 参数。 #### 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 03b26042c..7b5a8b15b 100755 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ docker run \ -v ~/.halo2:/root/.halo2 \ halohub/halo:2.2 \ --halo.external-url=http://localhost:8090/ \ - --halo.security.initializer.superadminuser=admin \ + --halo.security.initializer.superadminusername=admin \ --halo.security.initializer.superadminpassword=P@88w0rd ```