Skip to content

Commit cb39a1b

Browse files
Merge pull request #15024 from kowyo/main
docs: use docker compose instead of docker-compose
2 parents 93e347b + 858f557 commit cb39a1b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env
273273
source .env
274274

275275
# Start
276-
docker-compose up
276+
docker compose up
277277
```
278278

279279

docker/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Replace `your-secret-key` with a strong, randomly generated secret.
2828
Once you have set the `MASTER_KEY`, you can build and run the containers using the following command:
2929

3030
```bash
31-
docker-compose up -d --build
31+
docker compose up -d --build
3232
```
3333

3434
This command will:
@@ -42,21 +42,21 @@ This command will:
4242
You can check the status of the running containers with the following command:
4343

4444
```bash
45-
docker-compose ps
45+
docker compose ps
4646
```
4747

4848
To view the logs of the `litellm` container, run:
4949

5050
```bash
51-
docker-compose logs -f litellm
51+
docker compose logs -f litellm
5252
```
5353

5454
### 4. Stopping the Application
5555

5656
To stop the running containers, use the following command:
5757

5858
```bash
59-
docker-compose down
59+
docker compose down
6060
```
6161

6262
## Troubleshooting

docs/my-website/docs/proxy/deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env
2727
source .env
2828

2929
# Start
30-
docker-compose up
30+
docker compose up
3131
```
3232

3333

docs/my-website/docs/proxy/docker_quick_start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ echo 'LITELLM_SALT_KEY="sk-1234"' >> .env
5555
source .env
5656

5757
# Start
58-
docker-compose up
58+
docker compose up
5959
```
6060

6161
</TabItem>

0 commit comments

Comments
 (0)