diff --git a/examples/openshift/README.md b/examples/openshift/README.md index 4f743f1da1..65928d4aa8 100644 --- a/examples/openshift/README.md +++ b/examples/openshift/README.md @@ -52,7 +52,7 @@ The output will be similar to: * With parameters: * APPLICATION_NAME=notebook - * NOTEBOOK_IMAGE=jupyter/minimal-notebook:latest + * NOTEBOOK_IMAGE=docker.io/jupyter/minimal-notebook:latest * NOTEBOOK_PASSWORD=ded4d7cada554aa48e0db612e1ed1080 # generated --> Creating resources ... @@ -69,7 +69,7 @@ When no template parameters are provided, the name of the deployed notebook will The image used will be: ```lang-none -jupyter/minimal-notebook:latest +docker.io/jupyter/minimal-notebook:latest ``` A password you can use when accessing the notebook will be auto generated and is displayed in the output from running `oc new-app`. @@ -102,7 +102,7 @@ To override the name for the notebook, the image used, and the password, you can ```bash oc new-app --template jupyter-notebook \ --param APPLICATION_NAME=mynotebook \ - --param NOTEBOOK_IMAGE=jupyter/scipy-notebook:latest \ + --param NOTEBOOK_IMAGE=docker.io/jupyter/scipy-notebook:latest \ --param NOTEBOOK_PASSWORD=mypassword ``` @@ -213,7 +213,7 @@ you can use the name of the image stream for the image name, including any image This can be illustrated by first importing an image into the OpenShift project. ```bash -oc import-image jupyter/datascience-notebook:latest --confirm +oc import-image docker.io/jupyter/datascience-notebook:latest --confirm ``` Then deploy it using the name of the image stream created. diff --git a/examples/openshift/templates.json b/examples/openshift/templates.json index e12036ecb8..ebcd6cb2eb 100644 --- a/examples/openshift/templates.json +++ b/examples/openshift/templates.json @@ -18,7 +18,7 @@ }, { "name": "NOTEBOOK_IMAGE", - "value": "jupyter/minimal-notebook:latest", + "value": "docker.io/jupyter/minimal-notebook:latest", "required": true }, { @@ -85,7 +85,6 @@ "--no-browser", "--ip=0.0.0.0" ], - "ports": [ { "containerPort": 8888, diff --git a/examples/source-to-image/README.md b/examples/source-to-image/README.md index 8639c10999..6d4bcb82ac 100644 --- a/examples/source-to-image/README.md +++ b/examples/source-to-image/README.md @@ -34,13 +34,13 @@ s2i build \ --scripts-url https://raw.githubusercontent.com/jupyter/docker-stacks/main/examples/source-to-image \ --context-dir docs/source/examples/Notebook \ https://github.com/jupyter/notebook \ - jupyter/minimal-notebook:latest \ + docker.io/jupyter/minimal-notebook:latest \ notebook-examples ``` This example command will pull down the Git repository and build the image `notebook-examples` using the files contained in the `docs/source/examples/Notebook` directory of that Git repository. -The base image which the files will be combined with is `jupyter/minimal-notebook:latest`, but you can specify any of the Jupyter Project `docker-stacks` images as the base image. +The base image which the files will be combined with is `docker.io/jupyter/minimal-notebook:latest`, but you can specify any of the Jupyter Project `docker-stacks` images as the base image. The resulting image from running the command can be seen by running `docker images` command: @@ -147,7 +147,7 @@ oc new-app --template jupyter-notebook-quickstart \ --param APPLICATION_NAME=notebook-examples \ --param GIT_REPOSITORY_URL=https://github.com/jupyter/notebook \ --param CONTEXT_DIR=docs/source/examples/Notebook \ - --param BUILDER_IMAGE=jupyter/minimal-notebook:latest \ + --param BUILDER_IMAGE=docker.io/jupyter/minimal-notebook:latest \ --param NOTEBOOK_PASSWORD=mypassword ``` diff --git a/examples/source-to-image/templates.json b/examples/source-to-image/templates.json index 8daa0823d0..aa67766820 100644 --- a/examples/source-to-image/templates.json +++ b/examples/source-to-image/templates.json @@ -22,7 +22,7 @@ }, { "name": "BUILDER_IMAGE", - "value": "jupyter/minimal-notebook:latest", + "value": "docker.io/jupyter/minimal-notebook:latest", "required": true }, { @@ -125,7 +125,7 @@ }, { "name": "BUILDER_IMAGE", - "value": "jupyter/minimal-notebook:latest", + "value": "docker.io/jupyter/minimal-notebook:latest", "required": true }, { @@ -279,7 +279,6 @@ "--no-browser", "--ip=0.0.0.0" ], - "ports": [ { "containerPort": 8888, diff --git a/tagging/README.md b/tagging/README.md index 743e447e31..f3d2a9fb13 100644 --- a/tagging/README.md +++ b/tagging/README.md @@ -4,7 +4,7 @@ The main purpose of the source code in this folder is to properly tag all the im These two processes are closely related, so the source code is widely reused. A basic example of a tag is a `python` version tag. -For example, an image `jupyter/base-notebook` with `python 3.10.5` will have a tag `jupyter/base-notebook:python-3.10.5`. +For example, an image `jupyter/base-notebook` with `python 3.10.5` will have a full image name `docker.io/jupyter/base-notebook:python-3.10.5`. This tag (and all the other tags) are pushed to Docker Hub. Manifest is a description of some important part of the image in a `markdown`.