Skip to content

Commit 2ede59d

Browse files
authored
docs(docker): use latest image tag in examples (#1125)
Replace outdated ghcr.io/volcengine/openviking:main references in compose and deployment docs with :latest to match the current published image flow.
1 parent 8c51513 commit 2ede59d

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.8"
22

33
services:
44
openviking:
5-
image: ghcr.io/volcengine/openviking:main
5+
image: ghcr.io/volcengine/openviking:latest
66
container_name: openviking
77
ports:
88
- "1933:1933"

docs/en/getting-started/02-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you prefer to run OpenViking as a standalone service, Docker is recommended.
3636
```yaml
3737
services:
3838
openviking:
39-
image: ghcr.io/volcengine/openviking:main
39+
image: ghcr.io/volcengine/openviking:latest
4040
container_name: openviking
4141
ports:
4242
- "1933:1933"
@@ -59,7 +59,7 @@ If you prefer to run OpenViking as a standalone service, Docker is recommended.
5959
> ```yaml
6060
> services:
6161
> openviking:
62-
> image: ghcr.io/volcengine/openviking:main
62+
> image: ghcr.io/volcengine/openviking:latest
6363
> ports:
6464
> - "1933:1934" # Map host 1933 to container 1934
6565
> volumes:

docs/en/guides/03-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ docker run -d \
202202
-v ~/.openviking/ov.conf:/app/ov.conf \
203203
-v /var/lib/openviking/data:/app/data \
204204
--restart unless-stopped \
205-
ghcr.io/volcengine/openviking:main
205+
ghcr.io/volcengine/openviking:latest
206206
```
207207

208208
You can also use Docker Compose with the `docker-compose.yml` provided in the project root:

docs/zh/getting-started/02-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pip install openviking --upgrade --force-reinstall
3636
```yaml
3737
services:
3838
openviking:
39-
image: ghcr.io/volcengine/openviking:main
39+
image: ghcr.io/volcengine/openviking:latest
4040
container_name: openviking
4141
ports:
4242
- "1933:1933"
@@ -59,7 +59,7 @@ pip install openviking --upgrade --force-reinstall
5959
> ```yaml
6060
> services:
6161
> openviking:
62-
> image: ghcr.io/volcengine/openviking:main
62+
> image: ghcr.io/volcengine/openviking:latest
6363
> ports:
6464
> - "1933:1934" # 将宿主机 1933 映射到容器 1934
6565
> volumes:

docs/zh/guides/03-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ docker run -d \
200200
-v ~/.openviking/ov.conf:/app/ov.conf \
201201
-v /var/lib/openviking/data:/app/data \
202202
--restart unless-stopped \
203-
ghcr.io/volcengine/openviking:main
203+
ghcr.io/volcengine/openviking:latest
204204
```
205205

206206
也可以使用 Docker Compose,项目根目录提供了 `docker-compose.yml`

examples/cloud/GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ docker run -d \
258258
-v ~/.openviking/ov.conf:/app/ov.conf \
259259
-v /var/lib/openviking/data:/app/data \
260260
--restart unless-stopped \
261-
ghcr.io/volcengine/openviking:main
261+
ghcr.io/volcengine/openviking:latest
262262
```
263263

264264
> `~/.openviking/ov.conf` 替换为你实际的配置文件路径。

0 commit comments

Comments
 (0)