Skip to content

Commit

Permalink
feat: improve the quick start section of the readme (halo-dev#2899)
Browse files Browse the repository at this point in the history
#### What type of PR is this?

/kind documentation

#### What this PR does / why we need it:

更新 Readme 中快速开始的命令,提供初始管理员账号和外部访问链接的环境变量设置。

```release-note
None
```
  • Loading branch information
ruibaby authored Dec 9, 2022
1 parent 8f21880 commit 86e5366
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,18 @@
## 快速开始

```bash
docker run -it -d --name halo-next -p 8090:8090 -v ~/.halo2:/root/.halo2 --restart=unless-stopped halohub/halo:2.0.1
docker run \
-it -d \
--name halo \
-p 8090:8090 \
-v ~/.halo2:/root/.halo2 \
-e HALO_EXTERNAL_URL=http://localhost:8090/ \
-e HALO_SECURITY_INITIALIZER_SUPERADMINUSERNAME=admin \
-e HALO_SECURITY_INITIALIZER_SUPERADMINPASSWORD=P@88w0rd \
halohub/halo:2.0
```

详细部署文档请查阅:<https://docs.halo.run/getting-started/install/docker-compose>
以上仅作为体验使用,详细部署文档请查阅:<https://docs.halo.run/getting-started/install/docker-compose>

## 在线体验

Expand Down

0 comments on commit 86e5366

Please sign in to comment.