Skip to content

Commit

Permalink
Merge pull request #1094 from lewis617/patch-1
Browse files Browse the repository at this point in the history
docs: replace docker-compose with docker compose
  • Loading branch information
leex279 authored Jan 18, 2025
2 parents b842e0c + 9958496 commit 6ae1ac2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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 @@ -184,7 +184,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

0 comments on commit 6ae1ac2

Please sign in to comment.