You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See jupyterhub/team-compass#688
for context.
I've also added `QUAY_USERNAME` and `QUAY_PASSWORD` to environment
secrets, but *not* `env.REGISTRY`. I will do so once this gets
merged.
[](https://github.com/jupyterhub/jupyterhub/actions)
[](https://quay.io/repository/jupyterhub/jupyterhub)
18
18
[](https://codecov.io/gh/jupyterhub/jupyterhub)
Copy file name to clipboardexpand all lines: docs/source/tutorial/quickstart-docker.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Install JupyterHub with Docker
2
2
3
-
The JupyterHub [docker image](https://hub.docker.com/r/jupyterhub/jupyterhub/) is the fastest way to set up Jupyterhub in your local development environment.
3
+
The JupyterHub [docker image](https://quay.io/repository/jupyterhub/jupyterhub) is the fastest way to set up Jupyterhub in your local development environment.
4
4
5
5
:::{note}
6
-
This `jupyterhub/jupyterhub` docker image is only an image for running
6
+
This `quay.io/jupyterhub/jupyterhub` docker image is only an image for running
7
7
the Hub service itself. It does not provide the other Jupyter components,
8
8
such as Notebook installation, which are needed by the single-user servers.
9
9
To run the single-user servers, which may be on the same system as the Hub or
@@ -24,7 +24,7 @@ You should have [Docker] installed on a Linux/Unix based system.
24
24
To pull the latest JupyterHub image and start the `jupyterhub` container, run this command in your terminal.
25
25
26
26
```
27
-
docker run -d -p 8000:8000 --name jupyterhub jupyterhub/jupyterhub jupyterhub
27
+
docker run -d -p 8000:8000 --name jupyterhub quay.io/jupyterhub/jupyterhub jupyterhub
28
28
```
29
29
30
30
This command exposes the Jupyter container on port:8000. Navigate to `http://localhost:8000` in a web browser to access the JupyterHub console.
0 commit comments