Merge pull request #15024 from kowyo/main

docs: use docker compose instead of docker-compose
This commit is contained in:
Krish Dholakia
2025-10-01 21:34:42 -07:00
committed by GitHub
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env
source .env
# Start
docker-compose up
docker compose up
```
+4 -4
View File
@@ -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
+1 -1
View File
@@ -27,7 +27,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env
source .env
# Start
docker-compose up
docker compose up
```
@@ -55,7 +55,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env
source .env
# Start
docker-compose up
docker compose up
```
</TabItem>