docs(docker): 更新文档结构并添加Postgres部署指南

重构docker文档目录结构,将数据库相关文档移动到db子目录,其他服务文档移动到other子目录
添加Postgres部署文档,包含基本运行和持久化配置方案
This commit is contained in:
祀梦
2025-12-30 14:40:56 +08:00
parent fc6a6a03b8
commit d08ce7e3e7
4 changed files with 76 additions and 7 deletions

View File

@@ -149,16 +149,17 @@ const docker = defineNoteConfig({
{ text: "Docker 运维笔记", link: "/ops/docker/" },
{
text: "数据库相关",
prefix: "docker/",
prefix: "/ops/docker/db/",
items: [
{ text: "MongoDB 部署", link: "mongodb" },
{ text: "MongoDB 部署", link: "/ops/docker/db/mongodb/" },
{ text: "Postgres 部署", link: "/ops/docker/db/postgres/" },
]
},
{
text: "其他服务",
prefix: "docker/",
prefix: "/ops/docker/other/",
items: [
{ text: "ETLCloud 部署", link: "ETLCloud" },
{ text: "ETLCloud 部署", link: "/ops/docker/other/ETLCloud/" },
]
},
]