From 78b62b3628900a61ca6b7fa863193a9e86f5f49a Mon Sep 17 00:00:00 2001 From: James Zaki Date: Thu, 4 Apr 2024 17:21:04 +0100 Subject: [PATCH 1/2] Docs: Update quickstart.md to use Docker daemon --- docs/docs/developers/getting_started/quickstart.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/docs/developers/getting_started/quickstart.md b/docs/docs/developers/getting_started/quickstart.md index 13caa41e093..9c42f4ea365 100644 --- a/docs/docs/developers/getting_started/quickstart.md +++ b/docs/docs/developers/getting_started/quickstart.md @@ -15,11 +15,14 @@ In this guide, you will - Node.js >= v18 (recommend installing with [nvm](https://github.com/nvm-sh/nvm)) -## Install Docker +## Install Docker daemon -See [this page of the Docker docs](https://docs.docker.com/get-docker/) for instructions on how to install Docker Desktop for your operating system. +Docker daemon is easily installed via Docker Desktop. See [this page of the Docker docs](https://docs.docker.com/get-docker/) for instructions on how to install Docker Desktop for your operating system. +Note: if installing via Docker Desktop, you do NOT need to keep the application open at all times (just the daemon). -Once you have Docker installed, make sure it is running by opening the Docker Desktop application. +Docker daemon can also be installed via Docker Engine, see [these instructions](https://docs.docker.com/engine/install/). + +After Docker daemon is installed, ensure you have it running. See [start Docker daemon](https://docs.docker.com/config/daemon/start/). ### Note on Linux From 351a63ac44122fb135d8d22501189973cb420799 Mon Sep 17 00:00:00 2001 From: James Zaki Date: Mon, 8 Apr 2024 15:02:23 +0100 Subject: [PATCH 2/2] Precise Docker/daemon in quickstart.md instructions --- docs/docs/developers/getting_started/quickstart.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/developers/getting_started/quickstart.md b/docs/docs/developers/getting_started/quickstart.md index 12d73659d82..0bbd6d1b93b 100644 --- a/docs/docs/developers/getting_started/quickstart.md +++ b/docs/docs/developers/getting_started/quickstart.md @@ -15,14 +15,14 @@ In this guide, you will - Node.js >= v18 (recommend installing with [nvm](https://github.com/nvm-sh/nvm)) -## Install Docker daemon +## Install Docker -Docker daemon is easily installed via Docker Desktop. See [this page of the Docker docs](https://docs.docker.com/get-docker/) for instructions on how to install Docker Desktop for your operating system. -Note: if installing via Docker Desktop, you do NOT need to keep the application open at all times (just the daemon). +Aztec tooling requires the Docker daemon to be running, and this is easily achieved via Docker Desktop. See [this page of the Docker docs](https://docs.docker.com/get-docker/) for instructions on how to install Docker Desktop for your operating system. +Note: if installing via Docker Desktop, you do NOT need to keep the application open at all times (just Docker daemon). -Docker daemon can also be installed via Docker Engine, see [these instructions](https://docs.docker.com/engine/install/). +Installing and running the Docker daemon can also be achieved by installing Docker Engine, see [these instructions](https://docs.docker.com/engine/install/). -After Docker daemon is installed, ensure you have it running. See [start Docker daemon](https://docs.docker.com/config/daemon/start/). +However installed, ensure Docker daemon is running. See [start Docker daemon](https://docs.docker.com/config/daemon/start/). ### Note on Linux