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
@@ -26,11 +26,11 @@ The [User Guide on ReadTheDocs](https://jupyter-docker-stacks.readthedocs.io/en/
26
26
27
27
### Example 1
28
28
29
-
This command pulls the `jupyter/scipy-notebook` image tagged `2023-08-19` from Docker Hub if it is not already present on the local host.
29
+
This command pulls the `jupyter/scipy-notebook` image tagged `2023-09-25` from Docker Hub if it is not already present on the local host.
30
30
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:
31
31
32
32
```bash
33
-
docker run -p 10000:8888 jupyter/scipy-notebook:2023-08-19
33
+
docker run -p 10000:8888 jupyter/scipy-notebook:2023-09-25
34
34
```
35
35
36
36
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`.
@@ -45,11 +45,11 @@ The container remains intact for restart after the Server exits.
45
45
46
46
### Example 2
47
47
48
-
This command pulls the `jupyter/datascience-notebook` image tagged `2023-08-19` from Docker Hub if it is not already present on the local host.
48
+
This command pulls the `jupyter/datascience-notebook` image tagged `2023-09-25` from Docker Hub if it is not already present on the local host.
49
49
It then starts an _ephemeral_ container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
50
50
51
51
```bash
52
-
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work jupyter/datascience-notebook:2023-08-19
52
+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work jupyter/datascience-notebook:2023-09-25
53
53
```
54
54
55
55
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.
@@ -119,7 +119,7 @@ more information is available in the [documentation](https://jupyter-docker-stac
119
119
- We publish containers for both `x86_64` and `aarch64` platforms
120
120
- Single-platform images have either `aarch64-` or `x86_64-` tag prefixes, for example, `jupyter/base-notebook:aarch64-python-3.10.5`
121
121
- Starting from `2022-09-21`, we create multi-platform images (except `tensorflow-notebook`)
122
-
- Starting from `2023-08-19`, we create multi-platform `tensorflow-notebook` image as well
122
+
- Starting from `2023-09-25`, 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-08-19` from Docker Hub if it is not already present on the local host.
18
+
This command pulls the `jupyter/scipy-notebook` image tagged `2023-09-25` from Docker Hub 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 jupyter/scipy-notebook:2023-08-19
23
+
docker run -it -p 8888:8888 jupyter/scipy-notebook:2023-09-25
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-08-19 "tini -g -- start-no…" 11 seconds ago Exited (0) 8 seconds ago cranky_benz
42
+
# 221331c047c4 jupyter/scipy-notebook:2023-09-25 "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-08-19` from Docker Hub if it is not already present on the local host.
56
+
This command pulls the `jupyter/r-notebook` image tagged `2023-09-25` from Docker Hub 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 jupyter/r-notebook:2023-08-19
61
+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work jupyter/r-notebook:2023-09-25
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 `docker.io/jupyter/r-notebook` image tagged `2023-08-19` from Docker Hub if it is not already present on the local host.
140
+
This command pulls the `docker.io/jupyter/r-notebook` image tagged `2023-09-25` from Docker Hub 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