From 6041155de02ba04829f89e5729fcebffee0e7516 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 16 Dec 2025 09:56:34 +0530 Subject: [PATCH] docs: cleanup --- docs/my-website/docs/proxy/deploy.md | 33 ++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/docs/my-website/docs/proxy/deploy.md b/docs/my-website/docs/proxy/deploy.md index abdb9aa3298..548dfac0013 100644 --- a/docs/my-website/docs/proxy/deploy.md +++ b/docs/my-website/docs/proxy/deploy.md @@ -10,12 +10,39 @@ You can find the Dockerfile to build litellm proxy [here](https://github.com/Ber ## Quick Start +:::info +Facing issues with pulling the docker image? Email us at support@berri.ai. +::: + To start using Litellm, run the following commands in a shell: + + + + +``` +docker pull docker.litellm.ai/berriai/litellm:main-latest +``` + +[**See all docker images**](https://github.com/orgs/BerriAI/packages) + + + + + +```shell +$ pip install 'litellm[proxy]' +``` + + + + + +Use this docker compose to spin up the proxy with a postgres database running locally. + ```bash -# Get the code +# Get the docker compose file curl -O https://raw.githubusercontent.com/BerriAI/litellm/main/docker-compose.yml -curl -O https://raw.githubusercontent.com/BerriAI/litellm/main/prometheus.yml # Add the master key - you can change this after setup echo 'LITELLM_MASTER_KEY="sk-1234"' > .env @@ -30,6 +57,8 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env docker compose up ``` + + ### Docker Run