Skip to content

Commit

Permalink
Start new sentences on a new line in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Oct 21, 2023
1 parent ad28158 commit b331741
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/using/running.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ docker rm notebook

## Using the Podman CLI

An alternative to using the Docker CLI is to use the Podman CLI. Podman is mostly compatible with Docker.
An alternative to using the Docker CLI is to use the Podman CLI.
Podman is mostly compatible with Docker.

### Podman example

Expand Down
3 changes: 2 additions & 1 deletion docs/using/selecting.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ Whenever a docker image is pushed to the container registry, it is tagged with:
- a set of software version tags like `python-3.10.8` and `lab-3.5.3`

```{warning}
- Tags before `2022-07-05` were sometimes incorrect. Please, do not rely on them.
- Tags before `2022-07-05` were sometimes incorrect.
Please, do not rely on them.
- Single-platform images have either `aarch64` or `x86_64` tag prefixes, for example, `jupyter/base-notebook:aarch64-python-3.10.5`
```

Expand Down
6 changes: 4 additions & 2 deletions tagging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ For example, we dump all the `conda` packages, including their versions.

## Main principles

- All the images are located in a hierarchical tree. More info on [image relationships](../docs/using/selecting.md#image-relationships).
- All the images are located in a hierarchical tree.
More info on [image relationships](../docs/using/selecting.md#image-relationships).
- We have `tagger` and `manifest` classes, which can be run inside docker containers to obtain tags and build manifest pieces.
- These classes are inherited from the parent image to all the children images.
- Because manifests and tags might change from parent to children, `taggers` and `manifests` are reevaluated on each image. So, the values are not inherited.
- Because manifests and tags might change from parent to children, `taggers` and `manifests` are reevaluated on each image.
So, the values are not inherited.
- To tag an image and create a manifest, run `make hook/base-notebook` (or another image of your choice).

## Source code description
Expand Down

0 comments on commit b331741

Please sign in to comment.