Skip to content

Commit 9fd657a

Browse files
authored
Rename container to image in docs (#2156)
1 parent a4047b3 commit 9fd657a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/using/recipes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Ref: <https://github.com/jupyter/docker-stacks/issues/199>
151151

152152
## Manpage installation
153153

154-
Most containers, including our Ubuntu base image, ship without manpages installed to save space.
154+
Most images, including our Ubuntu base image, ship without manpages installed to save space.
155155
You can use the following Dockerfile to inherit from one of our images to enable manpages:
156156

157157
```{literalinclude} recipe_code/manpage_install.dockerfile
@@ -161,8 +161,8 @@ You can use the following Dockerfile to inherit from one of our images to enable
161161
Adding the documentation on top of the existing image wastes a lot of space
162162
and requires reinstalling every system package,
163163
which can take additional time and bandwidth.
164-
Enabling manpages in the base Ubuntu layer prevents this container bloat.
165-
To achieve this, use the previous `Dockerfile`'s commands with the original `ubuntu` image as your base container:
164+
Enabling manpages in the base Ubuntu layer prevents this image bloat.
165+
To achieve this, use the previous `Dockerfile`'s commands with the original `ubuntu` image as your base image:
166166

167167
```dockerfile
168168
FROM ubuntu:22.04
@@ -483,7 +483,7 @@ docker run -it --rm \
483483
quay.io/jupyter/minimal-notebook
484484
```
485485

486-
## Add ijavascript kernel to container
486+
## Install ijavascript kernel in your image
487487

488488
The example below is a Dockerfile to install the [IJavascript kernel](https://github.com/n-riesco/ijavascript).
489489

examples/docker-compose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ See the [installation instructions](https://docs.docker.com/engine/installation/
1212

1313
## Quickstart
1414

15-
Build and run a `jupyter/minimal-notebook` container on a VirtualBox VM on local desktop.
15+
Build and run a `jupyter/minimal-notebook` image on a VirtualBox VM on local desktop.
1616

1717
```bash
1818
# create a Docker Machine-controlled VirtualBox VM

0 commit comments

Comments
 (0)