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 #1094

Merged
merged 1 commit into from
Jan 18, 2025
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ docker build . --target bolt-ai-development

**Option 3: Docker Compose Profile**
```bash
docker-compose --profile development up
docker compose --profile development up
```

#### Running the Development Container
Expand All @@ -171,7 +171,7 @@ docker build . --target bolt-ai-production

**Option 3: Docker Compose Profile**
```bash
docker-compose --profile production up
docker compose --profile production up
```

#### Running the Production Container
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ This option requires some familiarity with Docker but provides a more isolated e

2. **Run the Container**:
```bash
docker-compose --profile development up
docker compose --profile development up
```


Expand Down
4 changes: 2 additions & 2 deletions docs/docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ docker build . --target bolt-ai-development

**Option 3: Docker Compose Profile**
```bash
docker-compose --profile development up
docker compose --profile development up
```

#### Running the Development Container
Expand All @@ -171,7 +171,7 @@ docker build . --target bolt-ai-production

**Option 3: Docker Compose Profile**
```bash
docker-compose --profile production up
docker compose --profile production up
```

#### Running the Production Container
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Once you've configured your keys, the application will be ready to use the selec
2. **Run the Container**:
Use Docker Compose profiles to manage environments:
```bash
docker-compose --profile development up
docker compose --profile development up
```

- With the development profile, changes to your code will automatically reflect in the running container (hot reloading).
Expand Down Expand Up @@ -188,7 +188,7 @@ To keep your local version of bolt.diy up to date with the latest changes, follo

- **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version:
```bash
docker-compose --profile development up --build
docker compose --profile development up --build
```

- **If not using Docker**, you can start the application as usual with:
Expand Down
Loading