From 82ed39e319d890b274bb80f359da21a16dbd5461 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sun, 26 May 2024 11:43:08 +0200 Subject: [PATCH] docs: use --quiet in example to simplify output The output showed the Alpine version that was used for the example, which can get outdated and distracts from the example steps. Use --quiet to reduce the output, and to reduce maintenance (i.e., no need to keep the output updated with current versions). Signed-off-by: Sebastiaan van Stijn --- docs/reference/commandline/container_run.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/reference/commandline/container_run.md b/docs/reference/commandline/container_run.md index 9e1ab27fc0..9a8b5aad3d 100644 --- a/docs/reference/commandline/container_run.md +++ b/docs/reference/commandline/container_run.md @@ -221,14 +221,7 @@ To run `htop` in a container that shares the process namespac of the host: 2. Install `htop` in the container: ```console - / # apk add htop - fetch https://dl-cdn.alpinelinux.org/alpine/v3.18/main/aarch64/APKINDEX.tar.gz - fetch https://dl-cdn.alpinelinux.org/alpine/v3.18/community/aarch64/APKINDEX.tar.gz - (1/3) Installing ncurses-terminfo-base (6.4_p20230506-r0) - (2/3) Installing libncursesw (6.4_p20230506-r0) - (3/3) Installing htop (3.2.2-r1) - Executing busybox-1.36.1-r2.trigger - OK: 9 MiB in 18 packages + / # apk add --quiet htop ``` 3. Invoke the `htop` command.