Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI:DOCS] Fix typo in Introduction.rst #9072

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Sometimes we can find a publicly available container image for the exact workloa

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.

Here's an example of how to build an Nginx web server on top of a Debian base image using the Dockerfile maintained by Nginx and published in 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::

podman build -t nginx https://git.io/Jf8ol

Expand Down Expand Up @@ -62,7 +62,7 @@ Input::
Password: ********
Login Succeeded!

Nex, tag the image so that we can push it into our user account::
Next, tag the image so that we can push it into our user account::

podman tag localhost/nginx quay.io/USERNAME/nginx

Expand Down