Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: replace docker-compose with docker compose #8502

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/content/classic/share-your-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/content/platform/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading