diff --git a/website/docs/installation/docker-compose.mdx b/website/docs/installation/docker-compose.mdx index 8dab5c47b985..0226d5e01502 100644 --- a/website/docs/installation/docker-compose.mdx +++ b/website/docs/installation/docker-compose.mdx @@ -18,6 +18,7 @@ services: tabby: restart: always image: tabbyml/tabby + entrypoint: /opt/tabby/bin/tabby-cpu command: serve --model TabbyML/StarCoder-1B --device cuda volumes: - "$HOME/.tabby:/data" diff --git a/website/docs/installation/docker.mdx b/website/docs/installation/docker.mdx index 7f26f87c0c13..a298ee3e9b27 100644 --- a/website/docs/installation/docker.mdx +++ b/website/docs/installation/docker.mdx @@ -20,7 +20,7 @@ import TabItem from '@theme/TabItem'; ```bash title="run.sh" - docker run -it -p 8080:8080 -v $HOME/.tabby:/data tabbyml/tabby serve --model TabbyML/StarCoder-1B + docker run --entrypoint /opt/tabby/bin/tabby-cpu -it -p 8080:8080 -v $HOME/.tabby:/data tabbyml/tabby serve --model TabbyML/StarCoder-1B ```