Skip to content

Commit a168681

Browse files
committed
Start documentation to use Docker Desktop
Related to jupyterhub#3157
1 parent 852a317 commit a168681

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Getting started with local development
2+
3+
This page contains a starting point for people who want to know more about the BinderHub deployment by playing around with a local development instance running on Kubernetes with [Docker Desktop](https://docs.docker.com/desktop/).
4+
5+
## Install Docker Desktop
6+
7+
Install Docker Desktop on [Mac](https://docs.docker.com/desktop/setup/install/mac-install/), [Windows](https://docs.docker.com/desktop/setup/install/windows-install/), or [Linux](https://docs.docker.com/desktop/setup/install/linux/). And [turn on Kubernetes](https://docs.docker.com/desktop/features/kubernetes/#install-and-turn-on-kubernetes).
8+
9+
## Set up `kubectl` to connect to Docker Desktop
10+
11+
You can connect `kubectl` with Docker Desktop.
12+
To do so, run the following command:
13+
14+
```
15+
kubectl config use-context docker-desktop
16+
```
17+
18+
You can test this out by running:
19+
20+
```
21+
kubectl get -A pods
22+
```
23+
24+
and a list of all running pods should be printed.

docs/source/getting_started/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ permissions, as well as contextual information about the mybinder.org deployment
99
.. toctree::
1010
:maxdepth: 3
1111

12+
docker_desktop
1213
getting_started
1314
production_environment
1415
terminology

0 commit comments

Comments
 (0)