Skip to content

Commit

Permalink
Merge pull request #383 from Turupawn/sdk
Browse files Browse the repository at this point in the history
fix: linux user docker setup
  • Loading branch information
dghelm authored Oct 31, 2024
2 parents cd366ed + 79e74ae commit 23c746e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/content/docs/en/sdk/guides/devnet-deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ You can enable it in the `values.yaml` file if wanting to locally test external

sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo usermod -aG docker $USER
```

3. Install [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/):
Expand Down Expand Up @@ -168,6 +167,15 @@ sudo brew services start chipmk/tap/docker-mac-net-connect

</Fragment>
<Fragment slot="panel.2">

Add your user to the docker group.

```bash
sudo usermod -aG docker $USER && newgrp docker
```

Now you are ready to start minikube.

```bash
minikube start --driver=docker
minikube addons enable ingress
Expand Down

0 comments on commit 23c746e

Please sign in to comment.