docs: replace docker-compose with docker compose (#8502)

Co-authored-by: Swifty <craigswift13@gmail.com>
Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com>
This commit is contained in:
Simone Busoli
2024-11-20 11:20:46 -08:00
committed by GitHub
parent 26a6bd4d10
commit 19095be249
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
# To boot the app run the following:
# docker-compose run auto-gpt
# docker compose run auto-gpt
version: '3.9'
services:

View File

@@ -14,7 +14,7 @@ To print out debug logs:
.\autogpt.bat --debug # on Windows
docker-compose run --rm auto-gpt --debug # in Docker
docker compose run --rm auto-gpt --debug # in Docker
```
## Inspect and share logs

View File

@@ -56,7 +56,7 @@ You can check if you have Docker installed by running the following command:
```bash
docker -v
docker-compose -v
docker compose -v
```
Once you have Docker and Docker Compose installed, you can proceed to the next step.