Skip to content

Commit

Permalink
Add command for users using Docker Desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaiacs committed Jan 14, 2025
1 parent 2cf6772 commit 43ab94a
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions docs/source/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,19 @@ continue.
```

1. Configure `docker` using environment variables to use the same Docker daemon
as your `minikube` cluster. This means images you build are directly
available to the cluster.
as your local Kubernetes cluster. This means images you build are directly
available to the cluster. If using `minikube`,

```bash
eval $(minikube docker-env)
```

If using Docker Desktop,

```bash
docker context use desktop-linux
```

1. Start BinderHub with the testing config file.

```bash
Expand Down Expand Up @@ -189,13 +195,19 @@ continue.
```

2. Configure `docker` using environment variables to use the same Docker daemon
as your `minikube` cluster. This means images you build are directly
available to the cluster.
as your local Kubernetes cluster. This means images you build are directly
available to the cluster. If using `minikube`,

```bash
eval $(minikube docker-env)
```

If using Docker Desktop,

```bash
docker context use desktop-linux
```

3. Build the docker images referenced by the Helm chart and update its default
values to reference these images.

Expand Down

0 comments on commit 43ab94a

Please sign in to comment.