From 2c55ee4ff9bc914c1bd64fbdeede48e767aa67f1 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Wed, 13 Dec 2023 15:22:55 +0800 Subject: [PATCH] Update docker-compose.mdx --- website/docs/installation/docker-compose.mdx | 23 ++------------------ 1 file changed, 2 insertions(+), 21 deletions(-) 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"