Skip to content

Commit 52f7960

Browse files
committed
Update example date
1 parent 119766d commit 52f7960

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ The [User Guide on ReadTheDocs](https://jupyter-docker-stacks.readthedocs.io/en/
2727

2828
### Example 1
2929

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.
3131
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:
3232

3333
```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
3535
```
3636

3737
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.
4646

4747
### Example 2
4848

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.
5050
It then starts an _ephemeral_ container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
5151

5252
```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
5454
```
5555

5656
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
120120
- We publish containers for both `x86_64` and `aarch64` platforms
121121
- Single-platform images have either `aarch64-` or `x86_64-` tag prefixes, for example, `jupyter/base-notebook:aarch64-python-3.10.5`
122122
- 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
124124

125125
## Using old images
126126

binder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# https://quay.io/repository/jupyter/base-notebook?tab=tags
55
ARG REGISTRY=quay.io
66
ARG OWNER=jupyter
7-
ARG BASE_CONTAINER=$REGISTRY/$OWNER/base-notebook:2023-09-25
7+
ARG BASE_CONTAINER=$REGISTRY/$OWNER/base-notebook:2023-10-20
88
FROM $BASE_CONTAINER
99

1010
LABEL maintainer="Jupyter Project <[email protected]>"
@@ -13,6 +13,6 @@ LABEL maintainer="Jupyter Project <[email protected]>"
1313
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
1414
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1515

16-
ENV TAG="2023-09-25"
16+
ENV TAG="2023-10-20"
1717

1818
COPY --chown=${NB_UID}:${NB_GID} binder/README.ipynb "${HOME}"/README.ipynb

docs/using/running.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ The following are some common patterns.
1515

1616
### Example 1
1717

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.
1919
It then starts a container running Jupyter Server with the JupyterLab frontend and exposes the server on host port 8888.
2020
The server logs appear in the terminal and include a URL to the server.
2121

2222
```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
2424

2525
# Entered start.sh with args: jupyter lab
2626

@@ -39,7 +39,7 @@ Pressing `Ctrl-C` twice shuts down the Server but leaves the container intact on
3939
# list containers
4040
docker ps --all
4141
# 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
4343

4444
# start the stopped container
4545
docker start --attach 221331c047c4
@@ -53,12 +53,12 @@ docker rm 221331c047c4
5353

5454
### Example 2
5555

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.
5757
It then starts a container running Server and exposes the server on host port 10000.
5858
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).
5959

6060
```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
6262
```
6363

6464
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
137137
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) - 1 ))
138138
```
139139

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.
141141
It then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
142142
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).
143143

@@ -146,7 +146,7 @@ podman run -it --rm -p 10000:8888 \
146146
-v "${PWD}":/home/jovyan/work --user $uid:$gid \
147147
--uidmap $uid:0:1 --uidmap 0:1:$uid --uidmap $(($uid+1)):$(($uid+1)):$(($subuidSize-$uid)) \
148148
--gidmap $gid:0:1 --gidmap 0:1:$gid --gidmap $(($gid+1)):$(($gid+1)):$(($subgidSize-$gid)) \
149-
quay.io/jupyter/r-notebook:2023-09-25
149+
quay.io/jupyter/r-notebook:2023-10-20
150150
```
151151

152152
```{warning}

0 commit comments

Comments
 (0)