diff --git a/README.md b/README.md index 0918d2b1f..c785ee82f 100644 --- a/README.md +++ b/README.md @@ -273,7 +273,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env source .env # Start -docker-compose up +docker compose up ``` diff --git a/docker/README.md b/docker/README.md index 1c3c20898..ce478dfe0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -28,7 +28,7 @@ Replace `your-secret-key` with a strong, randomly generated secret. Once you have set the `MASTER_KEY`, you can build and run the containers using the following command: ```bash -docker-compose up -d --build +docker compose up -d --build ``` This command will: @@ -42,13 +42,13 @@ This command will: You can check the status of the running containers with the following command: ```bash -docker-compose ps +docker compose ps ``` To view the logs of the `litellm` container, run: ```bash -docker-compose logs -f litellm +docker compose logs -f litellm ``` ### 4. Stopping the Application @@ -56,7 +56,7 @@ docker-compose logs -f litellm To stop the running containers, use the following command: ```bash -docker-compose down +docker compose down ``` ## Troubleshooting diff --git a/docs/my-website/docs/proxy/deploy.md b/docs/my-website/docs/proxy/deploy.md index 6a11d069f..854d781f5 100644 --- a/docs/my-website/docs/proxy/deploy.md +++ b/docs/my-website/docs/proxy/deploy.md @@ -27,7 +27,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env source .env # Start -docker-compose up +docker compose up ``` diff --git a/docs/my-website/docs/proxy/docker_quick_start.md b/docs/my-website/docs/proxy/docker_quick_start.md index 1bb5150dc..f3da18065 100644 --- a/docs/my-website/docs/proxy/docker_quick_start.md +++ b/docs/my-website/docs/proxy/docker_quick_start.md @@ -55,7 +55,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env source .env # Start -docker-compose up +docker compose up ```