Skip to content

Commit 49f7de7

Browse files
authored
Merge pull request #4674 from thaJeztah/docs_bookworm
docs: update debian examples to use bookworm
2 parents 1c6d7d0 + 6468c63 commit 49f7de7

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

docs/reference/commandline/pull.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,18 @@ docker.io/library/debian:latest
6767
Docker images can consist of multiple layers. In the example above, the image
6868
consists of a single layer; `e756f3fdd6a3`.
6969

70-
Layers can be reused by images. For example, the `debian:bullseye` image shares
71-
its layer with the `debian:latest`. Pulling the `debian:bullseye` image therefore
70+
Layers can be reused by images. For example, the `debian:bookworm` image shares
71+
its layer with the `debian:latest`. Pulling the `debian:bookworm` image therefore
7272
only pulls its metadata, but not its layers, because the layer is already present
7373
locally:
7474

7575
```console
76-
$ docker image pull debian:bullseye
76+
$ docker image pull debian:bookworm
7777

78-
bullseye: Pulling from library/debian
78+
bookworm: Pulling from library/debian
7979
Digest: sha256:3f1d6c17773a45c97bd8f158d665c9709d7b29ed7917ac934086ad96f92e4510
80-
Status: Downloaded newer image for debian:bullseye
81-
docker.io/library/debian:bullseye
80+
Status: Downloaded newer image for debian:bookworm
81+
docker.io/library/debian:bookworm
8282
```
8383

8484
To see which images are present locally, use the [`docker images`](images.md)
@@ -88,13 +88,13 @@ command:
8888
$ docker images
8989

9090
REPOSITORY TAG IMAGE ID CREATED SIZE
91-
debian bullseye 4eacea30377a 8 days ago 124MB
91+
debian bookworm 4eacea30377a 8 days ago 124MB
9292
debian latest 4eacea30377a 8 days ago 124MB
9393
```
9494

9595
Docker uses a content-addressable image store, and the image ID is a SHA256
9696
digest covering the image's configuration and layers. In the example above,
97-
`debian:bullseye` and `debian:latest` have the same image ID because they are
97+
`debian:bookworm` and `debian:latest` have the same image ID because they are
9898
the *same* image tagged with different names. Because they are the same image,
9999
their layers are stored only once and do not consume extra disk space.
100100

man/src/image/pull.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,30 @@ Docker Engine uses the `:latest` tag as a default. This example pulls the
2727
Docker images can consist of multiple layers. In the example above, the image
2828
consists of a single layer; `e756f3fdd6a3`.
2929

30-
Layers can be reused by images. For example, the `debian:bullseye` image shares
31-
its layer with the `debian:latest`. Pulling the `debian:bullseye` image therefore
30+
Layers can be reused by images. For example, the `debian:bookworm` image shares
31+
its layer with the `debian:latest`. Pulling the `debian:bookworm` image therefore
3232
only pulls its metadata, but not its layers, because the layer is already present
3333
locally:
3434

35-
$ docker image pull debian:bullseye
35+
$ docker image pull debian:bookworm
3636

37-
bullseye: Pulling from library/debian
37+
bookworm: Pulling from library/debian
3838
Digest: sha256:3f1d6c17773a45c97bd8f158d665c9709d7b29ed7917ac934086ad96f92e4510
39-
Status: Downloaded newer image for debian:bullseye
40-
docker.io/library/debian:bullseye
39+
Status: Downloaded newer image for debian:bookworm
40+
docker.io/library/debian:bookworm
4141

4242
To see which images are present locally, use the **docker-images(1)**
4343
command:
4444

4545
$ docker images
4646

4747
REPOSITORY TAG IMAGE ID CREATED SIZE
48-
debian bullseye 4eacea30377a 8 days ago 124MB
48+
debian bookworm 4eacea30377a 8 days ago 124MB
4949
debian latest 4eacea30377a 8 days ago 124MB
5050

5151
Docker uses a content-addressable image store, and the image ID is a SHA256
5252
digest covering the image's configuration and layers. In the example above,
53-
`debian:bullseye` and `debian:latest` have the same image ID because they are
53+
`debian:bookworm` and `debian:latest` have the same image ID because they are
5454
the *same* image tagged with different names. Because they are the same image,
5555
their layers are stored only once and do not consume extra disk space.
5656

0 commit comments

Comments
 (0)