Skip to content

Commit bdcf6e1

Browse files
committed
Fix links
1 parent 67f5d18 commit bdcf6e1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**jupyterhub-deploy-docker** provides a reference
44
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
66
**single host** using [Docker](https://docs.docker.com).
77

88
Possible **use cases** include:
@@ -27,13 +27,13 @@ project.
2727

2828
Key components of this reference deployment are:
2929

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)
3131
in a Docker container on the host.
3232

3333
- **Authenticator**: Uses [Native Authenticator](https://github.com/jupyterhub/nativeauthenticator) to authenticate users.
3434
Any user will be allowed to sign up.
3535

36-
- **Spawner**:Uses [DockerSpawner](https://github.com/jupyter/dockerspawner)
36+
- **Spawner**:Uses [DockerSpawner](https://github.com/jupyterhub/dockerspawner)
3737
to spawn single-user Jupyter Notebook servers in separate Docker
3838
containers on the same host.
3939

@@ -49,7 +49,7 @@ Key components of this reference deployment are:
4949

5050
This deployment uses Docker, via [Docker Compose](https://docs.docker.com/compose/), for all the things.
5151

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/)
5353
to set up Docker for your environment.
5454

5555
## Authenticator setup
@@ -85,14 +85,14 @@ JupyterHub may timeout if the image being pulled is large, so it is better to
8585
pull the image to the host before running JupyterHub.
8686

8787
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`
9090
[Docker stacks](https://github.com/jupyter/docker-stacks).
9191

9292
You can pull the image using the following command:
9393

9494
```bash
95-
docker pull jupyter/minimal-notebook:latest
95+
docker pull jupyter/base-notebook:latest
9696
```
9797

9898
## Run JupyterHub

0 commit comments

Comments
 (0)