lewis liu commited on
Commit
9958496
·
1 Parent(s): 85d864f

fix: replace docker-compose with docker compose

Browse files
CONTRIBUTING.md CHANGED
@@ -144,7 +144,7 @@ docker build . --target bolt-ai-development
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
- docker-compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
@@ -171,7 +171,7 @@ docker build . --target bolt-ai-production
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
- docker-compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
 
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
+ docker compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
 
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
+ docker compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
README.md CHANGED
@@ -182,7 +182,7 @@ This option requires some familiarity with Docker but provides a more isolated e
182
 
183
  2. **Run the Container**:
184
  ```bash
185
- docker-compose --profile development up
186
  ```
187
 
188
 
 
182
 
183
  2. **Run the Container**:
184
  ```bash
185
+ docker compose --profile development up
186
  ```
187
 
188
 
docs/docs/CONTRIBUTING.md CHANGED
@@ -144,7 +144,7 @@ docker build . --target bolt-ai-development
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
- docker-compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
@@ -171,7 +171,7 @@ docker build . --target bolt-ai-production
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
- docker-compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
 
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
+ docker compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
 
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
+ docker compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
docs/docs/index.md CHANGED
@@ -156,7 +156,7 @@ Once you've configured your keys, the application will be ready to use the selec
156
  2. **Run the Container**:
157
  Use Docker Compose profiles to manage environments:
158
  ```bash
159
- docker-compose --profile development up
160
  ```
161
 
162
  - With the development profile, changes to your code will automatically reflect in the running container (hot reloading).
@@ -188,7 +188,7 @@ To keep your local version of bolt.diy up to date with the latest changes, follo
188
 
189
  - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version:
190
  ```bash
191
- docker-compose --profile development up --build
192
  ```
193
 
194
  - **If not using Docker**, you can start the application as usual with:
 
156
  2. **Run the Container**:
157
  Use Docker Compose profiles to manage environments:
158
  ```bash
159
+ docker compose --profile development up
160
  ```
161
 
162
  - With the development profile, changes to your code will automatically reflect in the running container (hot reloading).
 
188
 
189
  - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version:
190
  ```bash
191
+ docker compose --profile development up --build
192
  ```
193
 
194
  - **If not using Docker**, you can start the application as usual with: