Skip to content

Commit df6884f

Browse files
committed
Update tag example
1 parent 1688c06 commit df6884f

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

README.md

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

2727
**Example 1:**
2828

29-
This command pulls the `jupyter/scipy-notebook` image tagged `2023-06-01` from Docker Hub if it is not already present on the local host.
29+
This command pulls the `jupyter/scipy-notebook` image tagged `2023-07-25` from Docker Hub if it is not already present on the local host.
3030
It then starts a container running a Jupyter Server and exposes the container's internal port `8888` to port `10000` of the host machine:
3131

3232
```bash
33-
docker run -p 10000:8888 jupyter/scipy-notebook:2023-06-01
33+
docker run -p 10000:8888 jupyter/scipy-notebook:2023-07-25
3434
```
3535

3636
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 Jupyter Server exits.
4545

4646
**Example 2:**
4747

48-
This command pulls the `jupyter/datascience-notebook` image tagged `2023-06-01` from Docker Hub if it is not already present on the local host.
48+
This command pulls the `jupyter/datascience-notebook` image tagged `2023-07-25` from Docker Hub if it is not already present on the local host.
4949
It then starts an _ephemeral_ container running a Jupyter Server and exposes the server on host port 10000.
5050

5151
```bash
52-
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work jupyter/datascience-notebook:2023-06-01
52+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work jupyter/datascience-notebook:2023-07-25
5353
```
5454

5555
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.
@@ -117,7 +117,7 @@ This change is tracked in the issue [#1217](https://github.com/jupyter/docker-st
117117
- We publish containers for both `x86_64` and `aarch64` platforms
118118
- Single-platform images have either `aarch64-` or `x86_64-` tag prefixes, for example, `jupyter/base-notebook:aarch64-python-3.10.5`
119119
- Starting from `2022-09-21`, we create multi-platform images (except `tensorflow-notebook`)
120-
- Starting from `2023-06-01`, we create multi-platform `tensorflow-notebook` image as well
120+
- Starting from `2023-07-25`, we create multi-platform `tensorflow-notebook` image as well
121121

122122
## Using old images
123123

binder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# https://hub.docker.com/r/jupyter/base-notebook/tags
55
ARG OWNER=jupyter
6-
ARG BASE_CONTAINER=$OWNER/base-notebook:2023-06-01
6+
ARG BASE_CONTAINER=$OWNER/base-notebook:2023-07-25
77
FROM $BASE_CONTAINER
88

99
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
@@ -12,6 +12,6 @@ LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
1212
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
1313
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1414

15-
ENV TAG="2023-06-01"
15+
ENV TAG="2023-07-25"
1616

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

docs/using/recipes.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Create a new Dockerfile like the one shown below.
2929

3030
```dockerfile
3131
# Start from a core stack version
32-
FROM jupyter/datascience-notebook:2023-06-01
32+
FROM jupyter/datascience-notebook:2023-07-25
3333
# Install in the default python3 environment
3434
RUN pip install --no-cache-dir 'flake8==3.9.2' && \
3535
fix-permissions "${CONDA_DIR}" && \
@@ -48,7 +48,7 @@ Next, create a new Dockerfile like the one shown below.
4848

4949
```dockerfile
5050
# Start from a core stack version
51-
FROM jupyter/datascience-notebook:2023-06-01
51+
FROM jupyter/datascience-notebook:2023-07-25
5252
# Install from the requirements.txt file
5353
COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/
5454
RUN pip install --no-cache-dir --requirement /tmp/requirements.txt && \
@@ -60,7 +60,7 @@ For conda, the Dockerfile is similar:
6060

6161
```dockerfile
6262
# Start from a core stack version
63-
FROM jupyter/datascience-notebook:2023-06-01
63+
FROM jupyter/datascience-notebook:2023-07-25
6464
# Install from the requirements.txt file
6565
COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/
6666
RUN mamba install --yes --file /tmp/requirements.txt && \
@@ -283,7 +283,7 @@ To use a specific version of JupyterHub, the version of `jupyterhub` in your ima
283283
version in the Hub itself.
284284

285285
```dockerfile
286-
FROM jupyter/base-notebook:2023-06-01
286+
FROM jupyter/base-notebook:2023-07-25
287287
RUN pip install --no-cache-dir jupyterhub==1.4.1 && \
288288
fix-permissions "${CONDA_DIR}" && \
289289
fix-permissions "/home/${NB_USER}"
@@ -474,15 +474,15 @@ For JupyterLab:
474474

475475
```bash
476476
docker run -it --rm \
477-
jupyter/base-notebook:2023-06-01 \
477+
jupyter/base-notebook:2023-07-25 \
478478
start.sh jupyter lab --LabApp.token=''
479479
```
480480

481481
For jupyter classic:
482482

483483
```bash
484484
docker run -it --rm \
485-
jupyter/base-notebook:2023-06-01 \
485+
jupyter/base-notebook:2023-07-25 \
486486
start.sh jupyter notebook --NotebookApp.token=''
487487
```
488488

@@ -575,7 +575,7 @@ The example below is a Dockerfile to install the [ijavascript kernel](https://gi
575575

576576
```dockerfile
577577
# use one of the Jupyter Docker Stacks images
578-
FROM jupyter/scipy-notebook:2023-06-01
578+
FROM jupyter/scipy-notebook:2023-07-25
579579

580580
# install ijavascript
581581
RUN npm install -g ijavascript

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-06-01` from Docker Hub if it is not already present on the local host.
18+
This command pulls the `jupyter/scipy-notebook` image tagged `2023-07-25` from Docker Hub if it is not already present on the local host.
1919
It then starts a container running a Jupyter Notebook server and exposes the server on host port 8888.
2020
The server logs appear in the terminal and include a URL to the notebook server.
2121

2222
```bash
23-
docker run -it -p 8888:8888 jupyter/scipy-notebook:2023-06-01
23+
docker run -it -p 8888:8888 jupyter/scipy-notebook:2023-07-25
2424

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

@@ -39,7 +39,7 @@ Pressing `Ctrl-C` twice shuts down the notebook server but leaves the container
3939
# list containers
4040
docker ps --all
4141
# CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
42-
# 221331c047c4 jupyter/scipy-notebook:2023-06-01 "tini -g -- start-no…" 11 seconds ago Exited (0) 8 seconds ago cranky_benz
42+
# 221331c047c4 jupyter/scipy-notebook:2023-07-25 "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-06-01` from Docker Hub if it is not already present on the local host.
56+
This command pulls the `jupyter/r-notebook` image tagged `2023-07-25` from Docker Hub if it is not already present on the local host.
5757
It then starts a container running a Jupyter Notebook server and exposes the server on host port 10000.
5858
The server logs appear in the terminal and include a URL to the notebook 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 jupyter/r-notebook:2023-06-01
61+
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work jupyter/r-notebook:2023-07-25
6262
```
6363

6464
Pressing `Ctrl-C` twice shuts down the notebook server and immediately destroys the Docker container.
@@ -130,7 +130,7 @@ subuidSize=$(( $(podman info --format "{{ range .Host.IDMappings.UIDMap }}+{{.Si
130130
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) - 1 ))
131131
```
132132

133-
This command pulls the `docker.io/jupyter/r-notebook` image tagged `2023-06-01` from Docker Hub if it is not already present on the local host.
133+
This command pulls the `docker.io/jupyter/r-notebook` image tagged `2023-07-25` from Docker Hub if it is not already present on the local host.
134134
It then starts a container running a Jupyter Server and exposes the server on host port 10000.
135135
The server logs appear in the terminal and include a URL to the notebook server, but with the internal container port (8888) instead of the correct host port (10000).
136136

@@ -139,7 +139,7 @@ podman run -it --rm -p 10000:8888 \
139139
-v "${PWD}":/home/jovyan/work --user $uid:$gid \
140140
--uidmap $uid:0:1 --uidmap 0:1:$uid --uidmap $(($uid+1)):$(($uid+1)):$(($subuidSize-$uid)) \
141141
--gidmap $gid:0:1 --gidmap 0:1:$gid --gidmap $(($gid+1)):$(($gid+1)):$(($subgidSize-$gid)) \
142-
docker.io/jupyter/r-notebook:2023-06-01
142+
docker.io/jupyter/r-notebook:2023-07-25
143143
```
144144

145145
```{warning}

examples/docker-compose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can customize the docker-stack notebook image to deploy by modifying the `no
4242
For example, you can build and deploy a `jupyter/all-spark-notebook` by modifying the Dockerfile like so:
4343

4444
```dockerfile
45-
FROM jupyter/all-spark-notebook:2023-06-01
45+
FROM jupyter/all-spark-notebook:2023-07-25
4646
# Your RUN commands and so on
4747
```
4848

examples/docker-compose/notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Distributed under the terms of the Modified BSD License.
33

44
# Pick your favorite docker-stacks image
5-
FROM jupyter/minimal-notebook:2023-06-01
5+
FROM jupyter/minimal-notebook:2023-07-25
66

77
USER root
88

examples/make-deploy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Distributed under the terms of the Modified BSD License.
33

44
# Pick your favorite docker-stacks image
5-
FROM jupyter/minimal-notebook:2023-06-01
5+
FROM jupyter/minimal-notebook:2023-07-25
66

77
USER root
88

0 commit comments

Comments
 (0)