Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
openviking:
image: ghcr.io/volcengine/openviking:main
image: ghcr.io/volcengine/openviking:latest
container_name: openviking
ports:
- "1933:1933"
Expand Down
4 changes: 2 additions & 2 deletions docs/en/getting-started/02-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you prefer to run OpenViking as a standalone service, Docker is recommended.
```yaml
services:
openviking:
image: ghcr.io/volcengine/openviking:main
image: ghcr.io/volcengine/openviking:latest
container_name: openviking
ports:
- "1933:1933"
Expand All @@ -59,7 +59,7 @@ If you prefer to run OpenViking as a standalone service, Docker is recommended.
> ```yaml
> services:
> openviking:
> image: ghcr.io/volcengine/openviking:main
> image: ghcr.io/volcengine/openviking:latest
> ports:
> - "1933:1934" # Map host 1933 to container 1934
> volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guides/03-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ docker run -d \
-v ~/.openviking/ov.conf:/app/ov.conf \
-v /var/lib/openviking/data:/app/data \
--restart unless-stopped \
ghcr.io/volcengine/openviking:main
ghcr.io/volcengine/openviking:latest
```

You can also use Docker Compose with the `docker-compose.yml` provided in the project root:
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/getting-started/02-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pip install openviking --upgrade --force-reinstall
```yaml
services:
openviking:
image: ghcr.io/volcengine/openviking:main
image: ghcr.io/volcengine/openviking:latest
container_name: openviking
ports:
- "1933:1933"
Expand All @@ -59,7 +59,7 @@ pip install openviking --upgrade --force-reinstall
> ```yaml
> services:
> openviking:
> image: ghcr.io/volcengine/openviking:main
> image: ghcr.io/volcengine/openviking:latest
> ports:
> - "1933:1934" # 将宿主机 1933 映射到容器 1934
> volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/guides/03-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ docker run -d \
-v ~/.openviking/ov.conf:/app/ov.conf \
-v /var/lib/openviking/data:/app/data \
--restart unless-stopped \
ghcr.io/volcengine/openviking:main
ghcr.io/volcengine/openviking:latest
```

也可以使用 Docker Compose,项目根目录提供了 `docker-compose.yml`:
Expand Down
2 changes: 1 addition & 1 deletion examples/cloud/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ docker run -d \
-v ~/.openviking/ov.conf:/app/ov.conf \
-v /var/lib/openviking/data:/app/data \
--restart unless-stopped \
ghcr.io/volcengine/openviking:main
ghcr.io/volcengine/openviking:latest
```

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