LlamaFinetuneGGUF commited on
Commit
58db676
·
1 Parent(s): 7e70dc5

docs: added info on updating using docker

Browse files

Added docker-compose --profile development up --build to the update section

Files changed (1) hide show
  1. README.md +11 -6
README.md CHANGED
@@ -185,14 +185,19 @@ To keep your local version of bolt.diy up to date with the latest changes, follo
185
  pnpm install
186
  ```
187
 
188
- #### 4. **Run the Application**
189
- Once the updates are complete, you can start the application again with:
190
 
191
- ```bash
192
- pnpm run dev
193
- ```
 
 
 
 
 
 
194
 
195
- This ensures that you're running the latest version of bolt.diy and can take advantage of all the newest features and bug fixes.
196
 
197
  ---
198
 
 
185
  pnpm install
186
  ```
187
 
188
+ #### 4. **Rebuild and Start the Application**
 
189
 
190
+ - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version:
191
+ ```bash
192
+ docker-compose --profile development up --build
193
+ ```
194
+
195
+ - **If not using Docker**, you can start the application as usual with:
196
+ ```bash
197
+ pnpm run dev
198
+ ```
199
 
200
+ This ensures that you're running the latest version of bolt.diy and can take advantage of all the newest features and bug fixes.
201
 
202
  ---
203