# README

> 个人技术知识库，记录运维与开发相关的学习笔记和实践经验。

## 简介

本知识库旨在系统性地整理和记录日常工作中积累的技术知识，涵盖 Linux 运维、容器化、数据库、区块链等多个领域。采用 GitBook 风格组织，便于查阅和检索。

## 知识体系

| 领域                                      | 图标  | 说明           |
| --------------------------------------- | --- | ------------ |
| [Linux](/linux/linux.md)                | 🐧  | Linux 系统运维基础 |
| [Docker](/docker/docker-summary.md)     | 🐳  | 容器化技术与实战案例   |
| [Kubernetes](/kubernetes/kubernetes.md) | ☸️  | 容器编排与集群管理    |
| [Database](/database/database.md)       | 🗃️ | 数据库技术        |
| [BlockChain](/blockchain/blockchain.md) | 🪙  | 区块链技术        |

## 快速导航

### Docker

* [Docker 知识库摘要](/docker/docker-summary.md) - 常用命令、Dockerfile 编写、网络配置、数据卷等
* [RStudio Docker 部署问题与解决方案](/docker/docker-summary/rstudio-docker-notes.md) - rocker/rstudio 镜像配置不生效的排查与解决

## 目录结构

```
.
├── README.md                   # 项目说明
├── SUMMARY.md                  # GitBook 目录
├── Linux/                      # Linux 相关
│   └── linux.md
├── Docker/                     # Docker 相关
│   ├── docker-summary.md       # Docker 知识库摘要
│   └── rstudio-docker-notes.md # RStudio 部署案例
├── Kubernetes/                 # Kubernetes 相关
│   └── kubernetes.md
├── Database/                   # 数据库相关
│   └── database.md
├── BlockChain/                 # 区块链相关
│   └── blockchain.md
└── DjangoProject/              # Django 项目
    └── movie.md
```

## 使用方式

### 本地 GitBook 预览

```bash
# 安装 GitBook CLI
npm install -g gitbook-cli

# 初始化并启动预览
gitbook init
gitbook serve
```

### 在线阅读

支持部署到 GitHub Pages、GitBook.com 等平台直接在线阅读。

## 贡献

欢迎补充和完善文档内容，保持知识库的时效性和准确性。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gitbook.xmyw.top/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
