From b8de5636d491e5153ac2597267e95102c104d076 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 10 Jan 2024 22:16:38 +0530 Subject: [PATCH] docs(quick_start.md): update docs to use correct docker image --- docs/my-website/docs/proxy/quick_start.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/my-website/docs/proxy/quick_start.md b/docs/my-website/docs/proxy/quick_start.md index 0f8884da4de..fec578c96f2 100644 --- a/docs/my-website/docs/proxy/quick_start.md +++ b/docs/my-website/docs/proxy/quick_start.md @@ -381,12 +381,12 @@ See the latest available ghcr docker image here: https://github.com/berriai/litellm/pkgs/container/litellm ```shell -docker pull ghcr.io/berriai/litellm:main-latest +docker pull ghcr.io/berriai/litellm:main-v1.16.13 ``` ### Run the Docker Image ```shell -docker run ghcr.io/berriai/litellm:main-latest +docker run ghcr.io/berriai/litellm:main-v1.16.13 ``` #### Run the Docker Image with LiteLLM CLI args @@ -395,12 +395,12 @@ See all supported CLI args [here](https://docs.litellm.ai/docs/proxy/cli): Here's how you can run the docker image and pass your config to `litellm` ```shell -docker run ghcr.io/berriai/litellm:main-latest --config your_config.yaml +docker run ghcr.io/berriai/litellm:main-v1.16.13 --config your_config.yaml ``` Here's how you can run the docker image and start litellm on port 8002 with `num_workers=8` ```shell -docker run ghcr.io/berriai/litellm:main-latest --port 8002 --num_workers 8 +docker run ghcr.io/berriai/litellm:main-v1.16.13 --port 8002 --num_workers 8 ``` #### Run the Docker Image using docker compose