fix: update Docker deployment instructions to use correct KatelyaTV image

- Fix Docker image paths in README.md, QUICKSTART.md, and RELEASE_NOTES.md
- Update from ghcr.io/senshinya/moontv:latest to ghcr.io/katelya77/katelyatv:latest
- Ensure all Docker Compose examples use correct image
- Verify build compatibility and deployment instructions
- Add comprehensive v0.2.0 release notes with deployment guide
This commit is contained in:
Cursor Agent
2025-08-30 15:44:42 +00:00
parent 7f73c00e0a
commit edb9857e4a
5 changed files with 168 additions and 11 deletions
+3 -3
View File
@@ -20,15 +20,15 @@
## 安装与升级
- 首次安装(Docker 推荐)
```bash
# 拉取镜像(当前仍沿用上游命名空间)
docker pull ghcr.io/senshinya/moontv:latest
# 拉取镜像
docker pull ghcr.io/katelya77/katelyatv:latest
# 启动示例
docker run -d --name katelyatv \
-p 3000:3000 \
--env PASSWORD=your_password \
--restart unless-stopped \
ghcr.io/senshinya/moontv:latest
ghcr.io/katelya77/katelyatv:latest
```
- 或使用 README 中的 Docker Compose 示例