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

fix(docs): update docker-compose commands to use 'docker compose' syntax #412

Merged
merged 1 commit into from
Dec 17, 2024
Merged
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
4 changes: 2 additions & 2 deletions docs/fassets/guides/1-deploy-fassets-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ To execute agent bot commands, use the `cli` profile with the `agent-bot` Docker
For example, to get the FAssets system running agents, use this command:

```bash
docker-compose --profile cli run agent-bot listAgents --fasset FASSET
docker compose --profile cli run agent-bot listAgents --fasset FASSET
```

### Execute User Bot Commands
Expand All @@ -252,7 +252,7 @@ To execute user bot commands, use the `cli` profile and the `user-bot` Docker co
For example, to retrieve FAsset system info, use this command:

```bash
docker-compose --profile cli run user-bot info --fasset FASSET
docker compose --profile cli run user-bot info --fasset FASSET
```

### Update the FAssets Agent
Expand Down
Loading