summaryrefslogtreecommitdiff
path: root/docs/source/Introduction.rst
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2021-04-17 15:13:10 -0400
committerTomSweeneyRedHat <tsweeney@redhat.com>2021-04-17 15:13:16 -0400
commit53a1edc3db8f19a07ff5f2dd9c5a044244cd23bf (patch)
tree247ade0d05c9c22302b2b4bf2132b4aae8c4d620 /docs/source/Introduction.rst
parent6ff56ab50a10e2350013c4ff1bf4b8d5d7b5aa87 (diff)
downloadpodman-53a1edc3db8f19a07ff5f2dd9c5a044244cd23bf.tar.gz
podman-53a1edc3db8f19a07ff5f2dd9c5a044244cd23bf.tar.bz2
podman-53a1edc3db8f19a07ff5f2dd9c5a044244cd23bf.zip
[CI:DOCS] Fix introduction page typo
Fixes a small typo on the introduction pages. Fixes: #10042 Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'docs/source/Introduction.rst')
-rw-r--r--docs/source/Introduction.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/Introduction.rst b/docs/source/Introduction.rst
index 9fdce6962..3fa86f868 100644
--- a/docs/source/Introduction.rst
+++ b/docs/source/Introduction.rst
@@ -32,7 +32,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 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.
-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 the new and can easily be shared with others publicly using tools like GitHub.
+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.
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::