From 06b403f2b05090546ac6edc96e96b2f74602fd9c Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Tue, 26 Nov 2024 05:51:24 +0100 Subject: [PATCH] docs(backend): Add `--build` to docker command in Getting Started guide (#8762) --- docs/content/platform/advanced_setup.md | 2 +- docs/content/platform/getting-started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/platform/advanced_setup.md b/docs/content/platform/advanced_setup.md index 9bb413b70a51..cfe8f9ae9bb4 100644 --- a/docs/content/platform/advanced_setup.md +++ b/docs/content/platform/advanced_setup.md @@ -55,7 +55,7 @@ This will generate the Prisma client for PostgreSQL. You will also need to run t ```bash cd autogpt_platform/ -docker compose up -d +docker compose up -d --build ``` You can then run the migrations from the `backend` directory. diff --git a/docs/content/platform/getting-started.md b/docs/content/platform/getting-started.md index f4e82392be5a..b57ff7de8f63 100644 --- a/docs/content/platform/getting-started.md +++ b/docs/content/platform/getting-started.md @@ -90,7 +90,7 @@ To run the backend services, follow these steps: * Run the backend services: ``` - docker compose up -d + docker compose up -d --build ``` This command will start all the necessary backend services defined in the `docker-compose.combined.yml` file in detached mode.