Update tag example

This commit is contained in:
Ayaz Salikhov
2024-12-26 11:44:07 +00:00
parent 8e44737b80
commit f58ebf0cb9
3 changed files with 13 additions and 13 deletions

View File

@@ -15,12 +15,12 @@ The following are some common patterns.
### Example 1
This command pulls the `jupyter/scipy-notebook` image tagged `2024-11-19` from Quay.io if it is not already present on the local host.
This command pulls the `jupyter/scipy-notebook` image tagged `2024-12-23` from Quay.io if it is not already present on the local host.
It then starts a container running Jupyter Server with the JupyterLab frontend and exposes the server on host port 8888.
The server logs appear in the terminal and include a URL to the server.
```bash
docker run -it -p 8888:8888 quay.io/jupyter/scipy-notebook:2024-11-19
docker run -it -p 8888:8888 quay.io/jupyter/scipy-notebook:2024-12-23
# Entered start.sh with args: jupyter lab
@@ -39,7 +39,7 @@ Pressing `Ctrl-C` twice shuts down the Server but leaves the container intact on
# list containers
docker ps --all
# CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
# eca4aa01751c quay.io/jupyter/scipy-notebook:2024-11-19 "tini -g -- start-no…" About a minute ago Exited (0) 5 seconds ago silly_panini
# eca4aa01751c quay.io/jupyter/scipy-notebook:2024-12-23 "tini -g -- start-no…" About a minute ago Exited (0) 5 seconds ago silly_panini
# start the stopped container
docker start --attach -i eca4aa01751c
@@ -53,12 +53,12 @@ docker rm eca4aa01751c
### Example 2
This command pulls the `jupyter/r-notebook` image tagged `2024-11-19` from Quay.io if it is not already present on the local host.
This command pulls the `jupyter/r-notebook` image tagged `2024-12-23` from Quay.io if it is not already present on the local host.
It then starts a container running Server and exposes the server on host port 10000.
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).
```bash
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/r-notebook:2024-11-19
docker run -it --rm -p 10000:8888 -v "${PWD}":/home/jovyan/work quay.io/jupyter/r-notebook:2024-12-23
```
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
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) - 1 ))
```
This command pulls the `quay.io/jupyter/r-notebook` image tagged `2024-11-19` from Quay.io if it is not already present on the local host.
This command pulls the `quay.io/jupyter/r-notebook` image tagged `2024-12-23` from Quay.io if it is not already present on the local host.
It then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 10000.
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).
@@ -147,7 +147,7 @@ podman run -it --rm -p 10000:8888 \
-v "${PWD}":/home/jovyan/work --user $uid:$gid \
--uidmap $uid:0:1 --uidmap 0:1:$uid --uidmap $(($uid+1)):$(($uid+1)):$(($subuidSize-$uid)) \
--gidmap $gid:0:1 --gidmap 0:1:$gid --gidmap $(($gid+1)):$(($gid+1)):$(($subgidSize-$gid)) \
quay.io/jupyter/r-notebook:2024-11-19
quay.io/jupyter/r-notebook:2024-12-23
```
```{warning}