diff --git a/website/blog/2024-03-25-deploy-tabby-in-air-gapped-environment-with-docker/index.md b/website/blog/2024-03-25-deploy-tabby-in-air-gapped-environment-with-docker/index.md index 71e5a1defdf6..349952055ab2 100644 --- a/website/blog/2024-03-25-deploy-tabby-in-air-gapped-environment-with-docker/index.md +++ b/website/blog/2024-03-25-deploy-tabby-in-air-gapped-environment-with-docker/index.md @@ -35,6 +35,7 @@ FROM tabbyml/tabby ENV TABBY_MODEL_CACHE_ROOT=/models RUN /opt/tabby/bin/tabby-cpu download --model StarCoder-1B +RUN /opt/tabby/bin/tabby-cpu download --model Nomic-Embed-Text ``` The **TABBY_MODEL_CACHE_ROOT** env var sets the directory for saving downloaded models. By setting `ENV TABBY_MODEL_CACHE_ROOT=/models`, we instruct Tabby to save the downloaded model files in the `/models` directory within the Docker container during the build process.