github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/Introduction.rst (about) 1 .. include:: includes.rst 2 3 Introduction 4 ================================== 5 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`_:: 6 7 podman search busybox 8 9 Output:: 10 11 INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED 12 docker.io docker.io/library/busybox Busybox base image. 1882 [OK] 13 docker.io docker.io/radial/busyboxplus Full-chain, Internet enabled, busybox made f... 30 [OK] 14 docker.io docker.io/yauritux/busybox-curl Busybox with CURL 8 15 ... 16 17 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. 18 19 To run the busybox container image, it’s just a single command:: 20 21 podman run -it docker.io/library/busybox 22 23 Output:: 24 25 / # 26 27 You can poke around in the busybox container for a while, but you’ll quickly find that running small container with a few Linux utilities in it provides limited value, so exit out:: 28 29 exit 30 31 There’s an old saying that “nobody runs an operating system just to run an operating system” and the same is true with containers. It’s the workload running on top of an operating system or in a container that’s interesting and valuable. 32 33 Sometimes we can find a publicly available container image for the exact workload we’re looking for and it will already be packaged exactly how we want. But, more often than not, there’s something that we want to add, remove, or customize. It could be as simple as a configuration setting for security or performance, or as complex as adding a complex workload. Either way, containers make it fairly easy to make the changes we need. 34 35 Container Images aren’t actually images, they’re repositories often made up of multiple layers. These layers can easily be added, saved, and shared with others by using a Containerfile (Dockerfile). This single file often contains all the instructions needed to build a new container image and can easily be shared with others publicly using tools like GitHub. 36 37 Here's an example of how to build a Nginx web server on top of a Debian base image using the Dockerfile maintained by Nginx and published in GitHub:: 38 39 podman build -t nginx https://git.io/Jf8ol 40 41 Once, the image build completes, it’s easy to run the new image from our local cache:: 42 43 podman run -d -p 8080:80 nginx 44 curl localhost:8080 45 46 Output:: 47 48 ... 49 <p><em>Thank you for using nginx.</em></p> 50 ... 51 52 Building new images is great, but sharing our work with others let’s them review our work, critique how we built them, and offer improved versions. Our newly built Nginx image could be published at quay.io or docker.io to share it with the world. Everything needed to run the Nginx application is provided in the container image. Others could easily pull it down and use it, or make improvements to it. 53 54 Standardizing on container images and `Container Registries`_ enable a new level of collaboration through simple consumption. This simple consumption model is possible because every major Container Engine and Registry Server uses the Open Containers Initiative (OCI_) format. This allows users to find, run, build, share and deploy containers anywhere they want. Podman and other `Container Engines`_ like CRI-O, Docker, or containerd can create and consume container images from docker.io, quay.io, an on premise registry or even one provided by a cloud provider. The OCI image format facilitates this ecosystem through a single standard. 55 56 For example, if we wanted to share our newly built Nginx container image on quay.io it’s easy. First log in to quay:: 57 58 podman login quay.io 59 Input:: 60 61 Username: USERNAME 62 Password: ******** 63 Login Succeeded! 64 65 Next, tag the image so that we can push it into our user account:: 66 67 podman tag localhost/nginx quay.io/USERNAME/nginx 68 69 Finally, push the image:: 70 71 podman push quay.io/USERNAME/nginx 72 73 Output:: 74 75 Getting image source signatures 76 Copying blob 38c40d6c2c85 done 77 Copying blob fee76a531659 done 78 Copying blob c2adabaecedb done 79 Copying config 7f3589c0b8 done 80 Writing manifest to image destination 81 Copying config 7f3589c0b8 done 82 Writing manifest to image destination 83 Storing signatures 84 85 Notice that we pushed four layers to our registry and now it’s available for others to share. Take a quick look:: 86 87 podman inspect quay.io/USERNAME/nginx 88 89 Output:: 90 91 [ 92 { 93 "Id": "7f3589c0b8849a9e1ff52ceb0fcea2390e2731db9d1a7358c2f5fad216a48263", 94 "Digest": "sha256:7822b5ba4c2eaabdd0ff3812277cfafa8a25527d1e234be028ed381a43ad5498", 95 "RepoTags": [ 96 "quay.io/USERNAME/nginx:latest", 97 ... 98 99 To summarize, Podman makes it easy to find, run, build and share containers. 100 101 * Find: whether finding a container on dockerhub.io or quay.io, an internal registry server, or directly from a vendor, a couple of `podman search`_, and `podman pull`_ commands make it easy 102 * Run: it's easy to consume pre-built images with everything needed to run an entire application, or start from a Linux distribution base image with the `podman run`_ command 103 * Build: creating new layers with small tweaks, or major overhauls is easy with `podman build`_ 104 * Share: Podman lets you push your newly built containers anywhere you want with a single `podman push`_ command 105 106 For more instructions on use cases, take a look at our :doc:`Tutorials` page.