From a5f998375c247c50c18d0ce6badd4cc4cb0c9f66 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Tue, 26 Dec 2023 17:28:39 +0530 Subject: [PATCH] (docs) use latest ghcr image --- docs/my-website/docs/proxy/deploy.md | 10 +++++----- docs/my-website/docs/proxy/quick_start.md | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/my-website/docs/proxy/deploy.md b/docs/my-website/docs/proxy/deploy.md index b25bfaa53..792bc9507 100644 --- a/docs/my-website/docs/proxy/deploy.md +++ b/docs/my-website/docs/proxy/deploy.md @@ -14,12 +14,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-v1.12.3 +docker pull ghcr.io/berriai/litellm:main-latest ``` ### Run the Docker Image ```shell -docker run ghcr.io/berriai/litellm:main-v1.12.3 +docker run ghcr.io/berriai/litellm:main-latest ``` #### Run the Docker Image with LiteLLM CLI args @@ -28,12 +28,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-v1.12.3 --config your_config.yaml +docker run ghcr.io/berriai/litellm:main-latest --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-v1.12.3 --port 8002 --num_workers 8 +docker run ghcr.io/berriai/litellm:main-latest --port 8002 --num_workers 8 ``` #### Run the Docker Image using docker compose @@ -53,7 +53,7 @@ services: context: . args: target: runtime - image: ghcr.io/berriai/litellm:main + image: ghcr.io/berriai/litellm:main-latest ports: - "8000:8000" # Map the container port to the host, change the host port if necessary volumes: diff --git a/docs/my-website/docs/proxy/quick_start.md b/docs/my-website/docs/proxy/quick_start.md index 8aaadb677..ce3591bcb 100644 --- a/docs/my-website/docs/proxy/quick_start.md +++ b/docs/my-website/docs/proxy/quick_start.md @@ -376,12 +376,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-v1.10.1 +docker pull ghcr.io/berriai/litellm:main-latest ``` ### Run the Docker Image ```shell -docker run ghcr.io/berriai/litellm:main-v1.10.0 +docker run ghcr.io/berriai/litellm:main-latest ``` #### Run the Docker Image with LiteLLM CLI args @@ -390,12 +390,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-v1.10.0 --config your_config.yaml +docker run ghcr.io/berriai/litellm:main-latest --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-v1.10.0 --port 8002 --num_workers 8 +docker run ghcr.io/berriai/litellm:main-latest --port 8002 --num_workers 8 ``` #### Run the Docker Image using docker compose