diff --git a/website/docs/installation/docker-compose.mdx b/website/docs/installation/docker-compose.mdx
index 9b76850ed336..d97764c9a804 100644
--- a/website/docs/installation/docker-compose.mdx
+++ b/website/docs/installation/docker-compose.mdx
@@ -16,8 +16,8 @@ version: '3.5'
services:
tabby:
- restart: unless-stopped
- image: tabbyml/tabby-cuda
+ restart: always
+ image: tabbyml/tabby
command: serve --model TabbyML/StarCoder-1B --device cuda
volumes:
- "$HOME/.tabby:/data"
@@ -33,25 +33,6 @@ services:
```
-
-
-```yaml title="docker-compose.yml"
-version: '3.5'
-services:
- tabby:
- restart: unless-stopped
- image: tabbyml/tabby-rocm
- command: serve --model TabbyML/StarCoder-1B --device rocm
- volumes:
- - "$HOME/.tabby:/data"
- ports:
- - 8080:8080
- devices:
- - /dev/dri
- - /dev/kfd
-```
-
-
```yaml title="docker-compose.yml"