From 7c9aa72c554708ec022dcdf89fc9b5ef4cc44355 Mon Sep 17 00:00:00 2001 From: Joe Donovan Date: Fri, 19 Sep 2025 17:12:54 -0400 Subject: [PATCH] add containerfile doc link Signed-off-by: Joe Donovan --- docs/source/Introduction.rst | 2 +- docs/source/includes.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/Introduction.rst b/docs/source/Introduction.rst index 9a03ad1e415..8a6d6a73ca5 100644 --- a/docs/source/Introduction.rst +++ b/docs/source/Introduction.rst @@ -34,7 +34,7 @@ There’s an old saying that “nobody runs an operating system just to run an o 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 can 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. -Container Images aren’t actually images. They are 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. +Container Images aren’t actually images. They are 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. Here's an example of how to build a container image from content that resides in a git repository:: diff --git a/docs/source/includes.rst b/docs/source/includes.rst index 8d5f18e4d24..7f317aba840 100644 --- a/docs/source/includes.rst +++ b/docs/source/includes.rst @@ -16,4 +16,5 @@ .. _podman run: http://docs.podman.io/en/latest/markdown/podman-run.1.html .. _podman build: http://docs.podman.io/en/latest/markdown/podman-build.1.html .. _podman push: http://docs.podman.io/en/latest/markdown/podman-push.1.html +.. _Containerfile: https://github.com/containers/container-libs/blob/main/common/docs/Containerfile.5.md .. image:: https://raw.githubusercontent.com/containers/podman/main/logo/podman-logo.png