Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 32 additions & 10 deletions main/guides/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ yarn --version # for verification
<details>
<summary>Installing Docker</summary>

For docker, you can either download Docker UI using the steps on the [installation for Ubuntu](https://docs.docker.com/desktop/install/ubuntu/) or [installation for Ubuntu](https://docs.docker.com/desktop/install/mac-install/)
For docker, you can either download Docker UI using the steps on the [installation for Ubuntu](https://docs.docker.com/desktop/install/ubuntu/) or [installation for Mac](https://docs.docker.com/desktop/install/mac-install/)

To install via CLI, you can check following details.

Expand Down Expand Up @@ -136,30 +136,50 @@ Now you can install Docker!
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
```

</details>

<details>
<summary>Installing Docker on MacOS</summary>
Previously, you installed brew on your machine. You can install docker using the same command.
Now that Docker has been installed you'll need to add your user account to the Docker group.

```sh
brew cask install docker
sudo usermod -aG docker $USER
```

Since your user account was just added to the docker group, run the following command to re-evaluate group memberships.

```sh
exec su -l $USER
```

</details>

Now that Docker has been installed you'll need to add your user account to the Docker group.
<details>
<summary>Installing Docker on MacOS</summary>

You can install Docker using their official documentation or Homebrew.

**Using Docker's Website:**

Follow the [official Docker installation guide for Mac](https://docs.docker.com/desktop/install/mac-install/).

After installing Docker Desktop, you can start docker with:
```sh
sudo usermod -aG docker $USER
open -a Docker
```

Since your user account was just added to the docker group, run the following command to re-evaluate group memberships.
**Using Homebrew:**

Previously, you installed brew on your machine. You can install docker using the same command.


```sh
exec su -l $USER
brew cask install docker
```
or
```sh
brew install docker --cask
```

</details>

Now test that Docker works by running the `hello-world` sample.

```sh
Expand Down Expand Up @@ -193,6 +213,8 @@ For more examples and ideas, visit:

</details>



## Creating Your Dapp From a Template

Now you'll use yarn to pull down the sample dapp. The sample dapp will be placed in a subfolder named `demo`.
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5681,4 +5681,4 @@ yargs@^17.5.1:
yocto-queue@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251"
integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==
integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

spurious change?

Copy link
Contributor Author

@Jovonni Jovonni Jul 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very spurious 🫠 added by mistake, and removed it the wrong way.