fix: readme docker image name

This commit is contained in:
shinya
2025-08-07 01:02:30 +08:00
parent d3f5fe40af
commit b89ac58a30
3 changed files with 6 additions and 6 deletions

View File

@@ -132,11 +132,11 @@
```bash
# 拉取预构建镜像
docker pull ghcr.io/LunaTechLab/moontv:latest
docker pull ghcr.io/lunatechlab/moontv:latest
# 运行容器
# -d: 后台运行 -p: 映射端口 3000 -> 3000
docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/LunaTechLab/moontv:latest
docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/lunatechlab/moontv:latest
```
访问 `http://服务器 IP:3000` 即可。(需自行到服务器控制台放通 `3000` 端口)
@@ -150,7 +150,7 @@ docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/Lu
```yaml
services:
moontv-core:
image: ghcr.io/LunaTechLab/moontv:latest
image: ghcr.io/lunatechlab/moontv:latest
container_name: moontv-core
restart: unless-stopped
ports:
@@ -167,7 +167,7 @@ services:
```yaml
services:
moontv-core:
image: ghcr.io/LunaTechLab/moontv:latest
image: ghcr.io/lunatechlab/moontv:latest
container_name: moontv-core
restart: unless-stopped
ports:

View File

@@ -1 +1 @@
20250807000252
20250807010230

View File

@@ -2,7 +2,7 @@
'use client';
const CURRENT_VERSION = '20250807000252';
const CURRENT_VERSION = '20250807010230';
// 版本检查结果枚举
export enum UpdateStatus {