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
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -30,11 +30,11 @@ Older images are available on Docker Hub, but they will no longer be updated.
30
30
31
31
### Example 1
32
32
33
-
This command pulls the `jupyter/scipy-notebook` image tagged `2024-02-24` from Quay.io if it is not already present on the local host.
33
+
This command pulls the `jupyter/scipy-notebook` image tagged `2024-03-14` from Quay.io if it is not already present on the local host.
34
34
It then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the container's internal port `8888` to port `10000` of the host machine:
35
35
36
36
```bash
37
-
docker run -p 10000:8888 quay.io/jupyter/scipy-notebook:2024-02-24
37
+
docker run -p 10000:8888 quay.io/jupyter/scipy-notebook:2024-03-14
38
38
```
39
39
40
40
You can modify the port on which the container's port is exposed by [changing the value of the `-p` option](https://docs.docker.com/engine/reference/run/#exposed-ports) to `-p 8888:8888`.
@@ -49,11 +49,11 @@ The container remains intact for restart after the Server exits.
49
49
50
50
### Example 2
51
51
52
-
This command pulls the `jupyter/datascience-notebook` image tagged `2024-02-24` from Quay.io if it is not already present on the local host.
52
+
This command pulls the `jupyter/datascience-notebook` image tagged `2024-03-14` from Quay.io if it is not already present on the local host.
53
53
It then starts an _ephemeral_ container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
54
54
55
55
```bash
56
-
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/datascience-notebook:2024-02-24
56
+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/datascience-notebook:2024-03-14
57
57
```
58
58
59
59
The use of the `-v` flag in the command mounts the current working directory on the host (`${PWD}` in the example command) as `/home/jovyan/work` in the container.
@@ -101,7 +101,7 @@ more information is available in the [documentation](https://jupyter-docker-stac
101
101
- Single-platform images have either `aarch64-` or `x86_64-` tag prefixes, for example, `quay.io/jupyter/base-notebook:aarch64-python-3.11.6`
102
102
- Starting from `2022-09-21`, we create multi-platform images (except `tensorflow-notebook`)
103
103
- Starting from `2023-06-01`, we create a multi-platform `tensorflow-notebook` image as well
104
-
- Starting from `2024-02-24`, we create CUDA enabled variant of `pytorch-notebook` image for `x86_64` platform
104
+
- Starting from `2024-03-14`, we create CUDA enabled variant of `pytorch-notebook` image for `x86_64` platform
Copy file name to clipboardExpand all lines: docs/using/running.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,12 @@ The following are some common patterns.
15
15
16
16
### Example 1
17
17
18
-
This command pulls the `jupyter/scipy-notebook` image tagged `2024-02-24` from Quay.io if it is not already present on the local host.
18
+
This command pulls the `jupyter/scipy-notebook` image tagged `2024-03-14` from Quay.io if it is not already present on the local host.
19
19
It then starts a container running Jupyter Server with the JupyterLab frontend and exposes the server on host port 8888.
20
20
The server logs appear in the terminal and include a URL to the server.
21
21
22
22
```bash
23
-
docker run -it -p 8888:8888 quay.io/jupyter/scipy-notebook:2024-02-24
23
+
docker run -it -p 8888:8888 quay.io/jupyter/scipy-notebook:2024-03-14
24
24
25
25
# Entered start.sh with args: jupyter lab
26
26
@@ -39,7 +39,7 @@ Pressing `Ctrl-C` twice shuts down the Server but leaves the container intact on
39
39
# list containers
40
40
docker ps --all
41
41
# CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
42
-
# eca4aa01751c quay.io/jupyter/scipy-notebook:2024-02-24 "tini -g -- start-no…" About a minute ago Exited (0) 5 seconds ago silly_panini
42
+
# eca4aa01751c quay.io/jupyter/scipy-notebook:2024-03-14 "tini -g -- start-no…" About a minute ago Exited (0) 5 seconds ago silly_panini
43
43
44
44
# start the stopped container
45
45
docker start --attach -i eca4aa01751c
@@ -53,12 +53,12 @@ docker rm eca4aa01751c
53
53
54
54
### Example 2
55
55
56
-
This command pulls the `jupyter/r-notebook` image tagged `2024-02-24` from Quay.io if it is not already present on the local host.
56
+
This command pulls the `jupyter/r-notebook` image tagged `2024-03-14` from Quay.io if it is not already present on the local host.
57
57
It then starts a container running Server and exposes the server on host port 10000.
58
58
The server logs appear in the terminal and include a URL to the Server but with the internal container port (8888) instead of the correct host port (10000).
59
59
60
60
```bash
61
-
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/r-notebook:2024-02-24
61
+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/r-notebook:2024-03-14
62
62
```
63
63
64
64
Pressing `Ctrl-C` twice shuts down the Server and immediately destroys the Docker container.
@@ -138,7 +138,7 @@ subuidSize=$(( $(podman info --format "{{ range .Host.IDMappings.UIDMap }}+{{.Si
138
138
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) -1))
139
139
```
140
140
141
-
This command pulls the `quay.io/jupyter/r-notebook` image tagged `2024-02-24` from Quay.io if it is not already present on the local host.
141
+
This command pulls the `quay.io/jupyter/r-notebook` image tagged `2024-03-14` from Quay.io if it is not already present on the local host.
142
142
It then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
143
143
The server logs appear in the terminal and include a URL to the server but with the internal container port (8888) instead of the correct host port (10000).
0 commit comments