2
2
3
3
** jupyterhub-deploy-docker** provides a reference
4
4
deployment of [ JupyterHub] ( https://github.com/jupyter/jupyterhub ) , a
5
- multi-user [ Jupyter Notebook] ( http ://jupyter.org/ ) environment, on a
5
+ multi-user [ Jupyter Notebook] ( https ://jupyter.org) environment, on a
6
6
** single host** using [ Docker] ( https://docs.docker.com ) .
7
7
8
8
Possible ** use cases** include:
@@ -27,13 +27,13 @@ project.
27
27
28
28
Key components of this reference deployment are:
29
29
30
- - ** Host** : Runs the [ JupyterHub components] ( https://jupyterhub.readthedocs.org /en/latest/getting-started .html#overview )
30
+ - ** Host** : Runs the [ JupyterHub components] ( https://jupyterhub.readthedocs.io /en/stable/reference/technical-overview .html )
31
31
in a Docker container on the host.
32
32
33
33
- ** Authenticator** : Uses [ Native Authenticator] ( https://github.com/jupyterhub/nativeauthenticator ) to authenticate users.
34
34
Any user will be allowed to sign up.
35
35
36
- - ** Spawner** : Uses [ DockerSpawner] ( https://github.com/jupyter /dockerspawner )
36
+ - ** Spawner** : Uses [ DockerSpawner] ( https://github.com/jupyterhub /dockerspawner )
37
37
to spawn single-user Jupyter Notebook servers in separate Docker
38
38
containers on the same host.
39
39
@@ -49,7 +49,7 @@ Key components of this reference deployment are:
49
49
50
50
This deployment uses Docker, via [ Docker Compose] ( https://docs.docker.com/compose/ ) , for all the things.
51
51
52
- 1 . Use [ Docker's installation instructions] ( https://docs.docker.com/engine/installation / )
52
+ 1 . Use [ Docker's installation instructions] ( https://docs.docker.com/engine/install / )
53
53
to set up Docker for your environment.
54
54
55
55
## Authenticator setup
@@ -85,14 +85,14 @@ JupyterHub may timeout if the image being pulled is large, so it is better to
85
85
pull the image to the host before running JupyterHub.
86
86
87
87
This deployment defaults to the
88
- [ jupyter/minimal -notebook] ( https://hub.docker.com/r/jupyter/minimal -notebook/ )
89
- Notebook image, which is built from the ` minimal -notebook`
88
+ [ jupyter/base -notebook] ( https://hub.docker.com/r/jupyter/base -notebook/ )
89
+ Notebook image, which is built from the ` base -notebook`
90
90
[ Docker stacks] ( https://github.com/jupyter/docker-stacks ) .
91
91
92
92
You can pull the image using the following command:
93
93
94
94
``` bash
95
- docker pull jupyter/minimal -notebook:latest
95
+ docker pull jupyter/base -notebook:latest
96
96
```
97
97
98
98
## Run JupyterHub
0 commit comments