Skip to content

Commit

Permalink
docs: refine h2 database tips (#280)
Browse files Browse the repository at this point in the history
优化使用 H2 数据库的提示。

/kind documentation

```release-note
None
```
  • Loading branch information
ruibaby authored Nov 25, 2023
1 parent d61ada3 commit 78ab4db
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
7 changes: 6 additions & 1 deletion docs/getting-started/install/docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@ import DockerArgs from "./slots/docker-args.md"
halo_network:
```

3. 仅创建 Halo 实例(使用默认的 H2 数据库,**不推荐用于生产环境,建议体验和测试的时候使用**):
3. 仅创建 Halo 实例(使用默认的 H2 数据库):

:::caution
不推荐在生产环境使用默认的 H2 数据库,这可能因为操作不当导致数据文件损坏。如果因为某些原因(如内存不足以运行独立数据库)必须要使用,建议按时[备份数据](../../user-guide/backup.md)。
:::

```yaml {19-24} title="~/halo/docker-compose.yaml"
version: "3"
Expand All @@ -198,6 +202,7 @@ import DockerArgs from "./slots/docker-args.md"
# 外部访问地址,请根据实际需要修改
- --halo.external-url=http://localhost:8090/
```

4. 仅创建 Halo 实例(使用已有外部数据库,MySQL 为例):

```yaml {8,12-20} title="~/halo/docker-compose.yaml"
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import DockerArgs from "./slots/docker-args.md"
在继续操作之前,我们推荐您先阅读[《写在前面》](../prepare),这可以快速帮助你了解 Halo。
:::

:::tip
此文档仅提供使用默认 H2 数据库的 Docker 运行方式,主要用于体验和测试,在生产环境我们不推荐使用 H2 数据库。
:::caution
此文档仅提供使用默认 H2 数据库的 Docker 运行方式,主要用于体验和测试,在生产环境我们不推荐使用 H2 数据库,这可能因为操作不当导致数据文件损坏。如果因为某些原因(如内存不足以运行独立数据库)必须要使用,建议按时[备份数据](../../user-guide/backup.md)

如果需要使用其他数据库部署,我们推荐使用 Docker Compose 部署:[使用 Docker Compose 部署](./docker-compose)
:::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@ import DockerArgs from "./slots/docker-args.md"
halo_network:
```

3. 仅创建 Halo 实例(使用默认的 H2 数据库,**不推荐用于生产环境,建议体验和测试的时候使用**):
3. 仅创建 Halo 实例(使用默认的 H2 数据库):

:::caution
不推荐在生产环境使用默认的 H2 数据库,这可能因为操作不当导致数据文件损坏。如果因为某些原因(如内存不足以运行独立数据库)必须要使用,建议按时[备份数据](../../user-guide/backup.md)。
:::

```yaml {19-24} title="~/halo/docker-compose.yaml"
version: "3"
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-2.10/getting-started/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import DockerArgs from "./slots/docker-args.md"
在继续操作之前,我们推荐您先阅读[《写在前面》](../prepare),这可以快速帮助你了解 Halo。
:::

:::tip
此文档仅提供使用默认 H2 数据库的 Docker 运行方式,主要用于体验和测试,在生产环境我们不推荐使用 H2 数据库。
:::caution
此文档仅提供使用默认 H2 数据库的 Docker 运行方式,主要用于体验和测试,在生产环境我们不推荐使用 H2 数据库,这可能因为操作不当导致数据文件损坏。如果因为某些原因(如内存不足以运行独立数据库)必须要使用,建议按时[备份数据](../../user-guide/backup.md)

如果需要使用其他数据库部署,我们推荐使用 Docker Compose 部署:[使用 Docker Compose 部署](./docker-compose)
:::
Expand Down

1 comment on commit 78ab4db

@vercel
Copy link

@vercel vercel bot commented on 78ab4db Nov 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

halo-docs – ./

halo-docs.vercel.app
docs.halo.run
halo-docs-git-main-halo-dev.vercel.app
halo-docs-halo-dev.vercel.app

Please sign in to comment.