Skip to content

Commit 00e591f

Browse files
committed
Add docker.io to more places
1 parent 8142194 commit 00e591f

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

examples/openshift/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The output will be similar to:
5252
5353
* With parameters:
5454
* APPLICATION_NAME=notebook
55-
* NOTEBOOK_IMAGE=jupyter/minimal-notebook:latest
55+
* NOTEBOOK_IMAGE=docker.io/jupyter/minimal-notebook:latest
5656
* NOTEBOOK_PASSWORD=ded4d7cada554aa48e0db612e1ed1080 # generated
5757
5858
--> Creating resources ...
@@ -69,7 +69,7 @@ When no template parameters are provided, the name of the deployed notebook will
6969
The image used will be:
7070

7171
```lang-none
72-
jupyter/minimal-notebook:latest
72+
docker.io/jupyter/minimal-notebook:latest
7373
```
7474

7575
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
102102
```bash
103103
oc new-app --template jupyter-notebook \
104104
--param APPLICATION_NAME=mynotebook \
105-
--param NOTEBOOK_IMAGE=jupyter/scipy-notebook:latest \
105+
--param NOTEBOOK_IMAGE=docker.io/jupyter/scipy-notebook:latest \
106106
--param NOTEBOOK_PASSWORD=mypassword
107107
```
108108

@@ -213,7 +213,7 @@ you can use the name of the image stream for the image name, including any image
213213
This can be illustrated by first importing an image into the OpenShift project.
214214

215215
```bash
216-
oc import-image jupyter/datascience-notebook:latest --confirm
216+
oc import-image docker.io/jupyter/datascience-notebook:latest --confirm
217217
```
218218

219219
Then deploy it using the name of the image stream created.

examples/openshift/templates.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
"name": "NOTEBOOK_IMAGE",
21-
"value": "jupyter/minimal-notebook:latest",
21+
"value": "docker.io/jupyter/minimal-notebook:latest",
2222
"required": true
2323
},
2424
{
@@ -85,7 +85,6 @@
8585
"--no-browser",
8686
"--ip=0.0.0.0"
8787
],
88-
8988
"ports": [
9089
{
9190
"containerPort": 8888,

examples/source-to-image/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ s2i build \
3434
--scripts-url https://raw.githubusercontent.com/jupyter/docker-stacks/main/examples/source-to-image \
3535
--context-dir docs/source/examples/Notebook \
3636
https://github.com/jupyter/notebook \
37-
jupyter/minimal-notebook:latest \
37+
docker.io/jupyter/minimal-notebook:latest \
3838
notebook-examples
3939
```
4040

4141
This example command will pull down the Git repository <https://github.com/jupyter/notebook>
4242
and build the image `notebook-examples` using the files contained in the `docs/source/examples/Notebook` directory of that Git repository.
43-
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.
43+
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.
4444

4545
The resulting image from running the command can be seen by running `docker images` command:
4646

@@ -147,7 +147,7 @@ oc new-app --template jupyter-notebook-quickstart \
147147
--param APPLICATION_NAME=notebook-examples \
148148
--param GIT_REPOSITORY_URL=https://github.com/jupyter/notebook \
149149
--param CONTEXT_DIR=docs/source/examples/Notebook \
150-
--param BUILDER_IMAGE=jupyter/minimal-notebook:latest \
150+
--param BUILDER_IMAGE=docker.io/jupyter/minimal-notebook:latest \
151151
--param NOTEBOOK_PASSWORD=mypassword
152152
```
153153

examples/source-to-image/templates.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"name": "BUILDER_IMAGE",
25-
"value": "jupyter/minimal-notebook:latest",
25+
"value": "docker.io/jupyter/minimal-notebook:latest",
2626
"required": true
2727
},
2828
{
@@ -125,7 +125,7 @@
125125
},
126126
{
127127
"name": "BUILDER_IMAGE",
128-
"value": "jupyter/minimal-notebook:latest",
128+
"value": "docker.io/jupyter/minimal-notebook:latest",
129129
"required": true
130130
},
131131
{
@@ -279,7 +279,6 @@
279279
"--no-browser",
280280
"--ip=0.0.0.0"
281281
],
282-
283282
"ports": [
284283
{
285284
"containerPort": 8888,

tagging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The main purpose of the source code in this folder is to properly tag all the im
44
These two processes are closely related, so the source code is widely reused.
55

66
A basic example of a tag is a `python` version tag.
7-
For example, an image `jupyter/base-notebook` with `python 3.10.5` will have a tag `jupyter/base-notebook:python-3.10.5`.
7+
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`.
88
This tag (and all the other tags) are pushed to Docker Hub.
99

1010
Manifest is a description of some important part of the image in a `markdown`.

0 commit comments

Comments
 (0)