From b2afb612de79b342315bf0c12cc5718f8ca928e8 Mon Sep 17 00:00:00 2001 From: amantri <829820+amantri@users.noreply.github.com> Date: Mon, 19 Feb 2024 10:29:58 -0800 Subject: [PATCH] Make the startup commands copy-pastable. The '#' on the docker compose command was throwing it off --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 27470434..e5c6b4c8 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,9 @@ There are two ways to run Compass locally: 2. Start services in Docker & reset the database ```sh - docker compose -f supporting_services/docker-compose.yml up -d # start the services in the background + echo # Starting Docker and required services in the background + open --background -a Docker && while ! docker system info > /dev/null 2>&1; do sleep 1; done + docker compose -f supporting_services/docker-compose.yml up -d npm run db:reset # reset and migrate the database ```