diff --git a/docs/getting-started/install/docker-compose.md b/docs/getting-started/install/docker-compose.md index b36eaef..e36bbdc 100644 --- a/docs/getting-started/install/docker-compose.md +++ b/docs/getting-started/install/docker-compose.md @@ -9,7 +9,7 @@ description: 使用 Docker Compose 部署 ## 创建容器组 -可用的 Halo 2.0.0-beta.1 的 Docker 镜像: +可用的 Halo 2.0.0-beta.2 的 Docker 镜像: - [halohub/halo-dev](https://hub.docker.com/r/halohub/halo-dev) - [ghcr.io/halo-dev/halo-dev](https://github.com/halo-dev/halo/pkgs/container/halo-dev) @@ -43,7 +43,7 @@ description: 使用 Docker Compose 部署 services: halo_next: - image: halohub/halo-dev:2.0.0-beta.1 + image: halohub/halo-dev:2.0.0-beta.2 container_name: halo_next restart: on-failure:3 volumes: @@ -66,7 +66,7 @@ description: 使用 Docker Compose 部署 services: halo_next: - image: halohub/halo-dev:2.0.0-beta.1 + image: halohub/halo-dev:2.0.0-beta.2 container_name: halo_next restart: on-failure:3 depends_on: @@ -211,7 +211,7 @@ reverse_proxy 127.0.0.1:8090 ```yaml {3} services: halo_next: - image: halohub/halo-dev:2.0.0-beta.1 + image: halohub/halo-dev:2.0.0-beta.2 container_name: halo_next ``` diff --git a/docs/getting-started/install/docker.md b/docs/getting-started/install/docker.md index dbd1a5c..a5a9e36 100644 --- a/docs/getting-started/install/docker.md +++ b/docs/getting-started/install/docker.md @@ -9,7 +9,7 @@ description: 使用 Docker 部署 ## 使用 Docker 镜像 -可用的 Halo 2.0.0-beta.1 的 Docker 镜像: +可用的 Halo 2.0.0-beta.2 的 Docker 镜像: - [halohub/halo-dev](https://hub.docker.com/r/halohub/halo-dev) - [ghcr.io/halo-dev/halo-dev](https://github.com/halo-dev/halo/pkgs/container/halo-dev) @@ -26,7 +26,7 @@ description: 使用 Docker 部署 -v ~/halo-next:/root/halo-next \ -e HALO_EXTERNAL_URL=http://localhost:8090/ \ -e HALO_SECURITY_INITIALIZER_SUPERADMINPASSWORD=P@88w0rd \ - halohub/halo-dev:2.0.0-beta.1 + halohub/halo-dev:2.0.0-beta.2 ``` :::info diff --git a/docs/intro.md b/docs/intro.md index 0094bb8..bceb043 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -37,14 +37,14 @@ slug: / - 1.5 分支: - 1.6 分支: -- 1.5 文档: +- 1.6 文档: ## 快速开始 ### Docker ```bash -docker run -it -d --name halo-next -p 8090:8090 -v ~/halo-next:/root/halo-next --restart=unless-stopped halohub/halo-dev:2.0.0-beta.1 +docker run -it -d --name halo-next -p 8090:8090 -v ~/halo-next:/root/halo-next --restart=unless-stopped halohub/halo-dev:2.0.0-beta.2 ``` 详细部署文档请查阅: