From 58db67683ef54dfc1c625faecfb291cc683c92f9 Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Fri, 20 Dec 2024 09:42:54 -0500 Subject: [PATCH] docs: added info on updating using docker Added docker-compose --profile development up --build to the update section --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2ea459d..6aaf14f 100644 --- a/README.md +++ b/README.md @@ -185,14 +185,19 @@ To keep your local version of bolt.diy up to date with the latest changes, follo pnpm install ``` -#### 4. **Run the Application** - Once the updates are complete, you can start the application again with: +#### 4. **Rebuild and Start the Application** - ```bash - pnpm run dev - ``` + - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version: + ```bash + docker-compose --profile development up --build + ``` -This ensures that you're running the latest version of bolt.diy and can take advantage of all the newest features and bug fixes. + - **If not using Docker**, you can start the application as usual with: + ```bash + pnpm run dev + ``` + +This ensures that you're running the latest version of bolt.diy and can take advantage of all the newest features and bug fixes. ---