From 9958496468f012c4bf941af6affb804f43b06513 Mon Sep 17 00:00:00 2001 From: lewis liu Date: Wed, 15 Jan 2025 10:30:45 +0800 Subject: [PATCH] fix: replace docker-compose with docker compose --- CONTRIBUTING.md | 4 ++-- README.md | 2 +- docs/docs/CONTRIBUTING.md | 4 ++-- docs/docs/index.md | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3a8d5be8..0310b6d1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 @@ -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 diff --git a/README.md b/README.md index d216bf0a..f3d740cc 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/docs/docs/CONTRIBUTING.md b/docs/docs/CONTRIBUTING.md index 3a8d5be8..0310b6d1 100644 --- a/docs/docs/CONTRIBUTING.md +++ b/docs/docs/CONTRIBUTING.md @@ -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 @@ -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 diff --git a/docs/docs/index.md b/docs/docs/index.md index 7f12f5dd..6e851beb 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -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). @@ -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: