Rename container to image in docs (#2156)

This commit is contained in:
Ayaz Salikhov
2024-10-09 15:57:02 +01:00
committed by GitHub
parent a4047b30a9
commit 9fd657a11b
2 changed files with 5 additions and 5 deletions

View File

@@ -151,7 +151,7 @@ Ref: <https://github.com/jupyter/docker-stacks/issues/199>
## Manpage installation ## 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: You can use the following Dockerfile to inherit from one of our images to enable manpages:
```{literalinclude} recipe_code/manpage_install.dockerfile ```{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
Adding the documentation on top of the existing image wastes a lot of space Adding the documentation on top of the existing image wastes a lot of space
and requires reinstalling every system package, and requires reinstalling every system package,
which can take additional time and bandwidth. which can take additional time and bandwidth.
Enabling manpages in the base Ubuntu layer prevents this container bloat. 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 container: To achieve this, use the previous `Dockerfile`'s commands with the original `ubuntu` image as your base image:
```dockerfile ```dockerfile
FROM ubuntu:22.04 FROM ubuntu:22.04
@@ -483,7 +483,7 @@ docker run -it --rm \
quay.io/jupyter/minimal-notebook 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). The example below is a Dockerfile to install the [IJavascript kernel](https://github.com/n-riesco/ijavascript).

View File

@@ -12,7 +12,7 @@ See the [installation instructions](https://docs.docker.com/engine/installation/
## Quickstart ## 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 ```bash
# create a Docker Machine-controlled VirtualBox VM # create a Docker Machine-controlled VirtualBox VM