docs: 增加 Docker Hub 镜像下载方式 (#169)

- 在中英文 README 中增加从 Docker Hub 拉取镜像的说明
- 添加 docker pull 命令和 Docker Hub 链接
- 调整 Docker 部署顺序,推荐使用预构建镜像
- 更新 docker/README.md,突出推荐从 Docker Hub 下载

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
zy
2025-09-27 18:13:59 +08:00
committed by GitHub
parent 53ea832773
commit f3fe9bab40
3 changed files with 59 additions and 14 deletions

View File

@@ -7,9 +7,20 @@
- 启动后,会产生一个 `images/` 目录,用于存储发布的图片。它会挂载到 Docker 容器里面。
如果要使用本地图片发布的话,请确保图片拷贝到 `./images/` 目录下,并且让 MCP 在发布的时候,指定文件夹为:`/app/images`,否则一定失败。
## 1. 自己构建镜像
## 1. 获取 Docker 镜像
可以使用源码自己构建镜像,如下:
### 1.1 从 Docker Hub 拉取(推荐)
我们提供了预构建的 Docker 镜像,可以直接从 Docker Hub 拉取使用:
```bash
# 拉取最新镜像
docker pull xpzouying/xiaohongshu-mcp
```
Docker Hub 地址:[https://hub.docker.com/r/xpzouying/xiaohongshu-mcp](https://hub.docker.com/r/xpzouying/xiaohongshu-mcp)
### 1.2 自己构建镜像(可选)
在有项目的Dockerfile的目录运行