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-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ The [User Guide on ReadTheDocs](https://jupyter-docker-stacks.readthedocs.io/en/
27
27
28
28
### Example 1
29
29
30
-
This command pulls the `jupyter/scipy-notebook` image tagged `2023-09-25` from Quay.io if it is not already present on the local host.
30
+
This command pulls the `jupyter/scipy-notebook` image tagged `2023-10-20` from Quay.io if it is not already present on the local host.
31
31
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:
32
32
33
33
```bash
34
-
docker run -p 10000:8888 quay.io/jupyter/scipy-notebook:2023-09-25
34
+
docker run -p 10000:8888 quay.io/jupyter/scipy-notebook:2023-10-20
35
35
```
36
36
37
37
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/#expose-incoming-ports) to `-p 8888:8888`.
@@ -46,11 +46,11 @@ The container remains intact for restart after the Server exits.
46
46
47
47
### Example 2
48
48
49
-
This command pulls the `jupyter/datascience-notebook` image tagged `2023-09-25` from Quay.io if it is not already present on the local host.
49
+
This command pulls the `jupyter/datascience-notebook` image tagged `2023-10-20` from Quay.io if it is not already present on the local host.
50
50
It then starts an _ephemeral_ container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
51
51
52
52
```bash
53
-
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/datascience-notebook:2023-09-25
53
+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/datascience-notebook:2023-10-20
54
54
```
55
55
56
56
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.
@@ -120,7 +120,7 @@ more information is available in the [documentation](https://jupyter-docker-stac
120
120
- We publish containers for both `x86_64` and `aarch64` platforms
121
121
- Single-platform images have either `aarch64-` or `x86_64-` tag prefixes, for example, `jupyter/base-notebook:aarch64-python-3.10.5`
122
122
- Starting from `2022-09-21`, we create multi-platform images (except `tensorflow-notebook`)
123
-
- Starting from `2023-09-25`, we create multi-platform `tensorflow-notebook` image as well
123
+
- Starting from `2023-10-20`, we create multi-platform `tensorflow-notebook` image as well
Copy file name to clipboardExpand all lines: docs/using/running.md
+7-7Lines changed: 7 additions & 7 deletions
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 `2023-09-25` from Quay.io if it is not already present on the local host.
18
+
This command pulls the `jupyter/scipy-notebook` image tagged `2023-10-20` 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:2023-09-25
23
+
docker run -it -p 8888:8888 quay.io/jupyter/scipy-notebook:2023-10-20
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
-
# 221331c047c4 jupyter/scipy-notebook:2023-09-25 "tini -g -- start-no…" 11 seconds ago Exited (0) 8 seconds ago cranky_benz
42
+
# 221331c047c4 jupyter/scipy-notebook:2023-10-20 "tini -g -- start-no…" 11 seconds ago Exited (0) 8 seconds ago cranky_benz
43
43
44
44
# start the stopped container
45
45
docker start --attach 221331c047c4
@@ -53,12 +53,12 @@ docker rm 221331c047c4
53
53
54
54
### Example 2
55
55
56
-
This command pulls the `jupyter/r-notebook` image tagged `2023-09-25` from Quay.io if it is not already present on the local host.
56
+
This command pulls the `jupyter/r-notebook` image tagged `2023-10-20` 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:2023-09-25
61
+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/r-notebook:2023-10-20
62
62
```
63
63
64
64
Pressing `Ctrl-C` twice shuts down the Server and immediately destroys the Docker container.
@@ -137,7 +137,7 @@ subuidSize=$(( $(podman info --format "{{ range .Host.IDMappings.UIDMap }}+{{.Si
137
137
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) -1))
138
138
```
139
139
140
-
This command pulls the `quay.io/jupyter/r-notebook` image tagged `2023-09-25` from Quay.io if it is not already present on the local host.
140
+
This command pulls the `quay.io/jupyter/r-notebook` image tagged `2023-10-20` from Quay.io if it is not already present on the local host.
141
141
It then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
142
142
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