Skip to content

Commit

Permalink
docs(website): use registry.tabbyml.com for docker registry
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed Sep 10, 2024
1 parent d3519e5 commit c829827
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions website/docs/quick-start/installation/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ version: '3.5'
services:
tabby:
restart: always
image: tabbyml/tabby
image: registry.tabbyml.com/tabbyml/tabby
command: serve --model StarCoder-1B --chat-model Qwen2-1.5B-Instruct --device cuda
volumes:
- "$HOME/.tabby:/data"
Expand All @@ -45,7 +45,7 @@ version: '3.5'
services:
tabby:
restart: always
image: tabbyml/tabby
image: registry.tabbyml.com/tabbyml/tabby
entrypoint: /opt/tabby/bin/tabby-cpu
command: serve --model StarCoder-1B --chat-model Qwen2-1.5B-Instruct
volumes:
Expand Down
6 changes: 4 additions & 2 deletions website/docs/quick-start/installation/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ import TabItem from '@theme/TabItem';
```bash title="run.sh"
docker run -it --gpus all \
-p 8080:8080 -v $HOME/.tabby:/data \
tabbyml/tabby serve --model StarCoder-1B --chat-model Qwen2-1.5B-Instruct --device cuda
registry.tabbyml.com/tabbyml/tabby \
serve --model StarCoder-1B --chat-model Qwen2-1.5B-Instruct --device cuda
```

</TabItem>
Expand All @@ -29,7 +30,8 @@ import TabItem from '@theme/TabItem';
```bash title="run.sh"
docker run --entrypoint /opt/tabby/bin/tabby-cpu -it \
-p 8080:8080 -v $HOME/.tabby:/data \
tabbyml/tabby serve --model StarCoder-1B --chat-model Qwen2-1.5B-Instruct
registry.tabbyml.com/tabbyml/tabby \
serve --model StarCoder-1B --chat-model Qwen2-1.5B-Instruct
```

</TabItem>}
Expand Down

0 comments on commit c829827

Please sign in to comment.