--- sidebar_position: 0 --- # Docker This guide explains how to launch Tabby using docker. import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; ```bash title="run.sh" docker run -it \ -p 8080:8080 -v $HOME/.tabby:/data \ tabbyml/tabby serve --model TabbyML/SantaCoder-1B ``` ```bash title="run.sh" docker run -it \ --gpus all -p 8080:8080 -v $HOME/.tabby:/data \ tabbyml/tabby \ serve --model TabbyML/SantaCoder-1B --device cuda ```