Skip to content

Commit

Permalink
Rename container to image in docs (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru authored Oct 9, 2024
1 parent a4047b3 commit 9fd657a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/using/recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Ref: <https://github.com/jupyter/docker-stacks/issues/199>

## Manpage installation

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

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

```dockerfile
FROM ubuntu:22.04
Expand Down Expand Up @@ -483,7 +483,7 @@ docker run -it --rm \
quay.io/jupyter/minimal-notebook
```

## Add ijavascript kernel to container
## Install ijavascript kernel in your image

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

Expand Down
2 changes: 1 addition & 1 deletion examples/docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ See the [installation instructions](https://docs.docker.com/engine/installation/

## Quickstart

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

```bash
# create a Docker Machine-controlled VirtualBox VM
Expand Down

0 comments on commit 9fd657a

Please sign in to comment.