From 27495981ce37a5e26b89996d68b3cf7f73be5240 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Wed, 6 Sep 2023 13:37:08 -0400 Subject: [PATCH] Some distros do not default to docker.io for shortname searches Fixes: #18910 Signed-off-by: Daniel J Walsh --- docs/source/Introduction.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/source/Introduction.rst b/docs/source/Introduction.rst index 833baada67d3..b5d5bdbba71e 100644 --- a/docs/source/Introduction.rst +++ b/docs/source/Introduction.rst @@ -4,14 +4,15 @@ Introduction ================================== Containers_ simplify the production, distribution, discoverability, and usage of applications with all of their dependencies and default configuration files. Users test drive or deploy a new application with one or two commands instead of following pages of installation instructions. Here's how to find your first `Container Image`_:: - podman search busybox + podman search docker.io/busybox Output:: - - INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED - docker.io docker.io/library/busybox Busybox base image. 1882 [OK] - docker.io docker.io/radial/busyboxplus Full-chain, Internet enabled, busybox made f... 30 [OK] - docker.io docker.io/yauritux/busybox-curl Busybox with CURL 8 + NAME DESCRIPTION + docker.io/library/busybox Busybox base image. + docker.io/rancher/busybox + docker.io/openebs/busybox-client + docker.io/antrea/busybox + docker.io/hugegraph/busybox test image ... The previous command returned a list of publicly available container images on DockerHub. These container images are easy to consume, but of differing levels of quality and maintenance. Let’s use the first one listed because it seems to be well maintained.