diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-06 00:12:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-06 00:12:02 -0500 |
commit | 77a597acb2ab8e913102ba57fe0b02870e59b756 (patch) | |
tree | 91a87f83a46565c7ad9b7598475d3d56756209f8 | |
parent | 2a7815726c74765ac5b097ba986b61687a63f77e (diff) | |
parent | 3ae580b0ef9be32b5168d1ddfe718a41dea2ca5e (diff) | |
download | podman-77a597acb2ab8e913102ba57fe0b02870e59b756.tar.gz podman-77a597acb2ab8e913102ba57fe0b02870e59b756.tar.bz2 podman-77a597acb2ab8e913102ba57fe0b02870e59b756.zip |
Merge pull request #9641 from jmguzik/doc-build-fix
[ci skip] Bad formatting fix in build documentation
-rw-r--r-- | docs/source/markdown/podman-build.1.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/source/markdown/podman-build.1.md b/docs/source/markdown/podman-build.1.md index e05678e2c..84a624e53 100644 --- a/docs/source/markdown/podman-build.1.md +++ b/docs/source/markdown/podman-build.1.md @@ -821,9 +821,13 @@ $ podman build --no-cache --rm=false -t imageName . ### Building an multi-architecture image using a --manifest option (Requires emulation software) -podman build --arch arm --manifest myimage /tmp/mysrc -podman build --arch amd64 --manifest myimage /tmp/mysrc -podman build --arch s390x --manifest myimage /tmp/mysrc +``` +$ podman build --arch arm --manifest myimage /tmp/mysrc + +$ podman build --arch amd64 --manifest myimage /tmp/mysrc + +$ podman build --arch s390x --manifest myimage /tmp/mysrc +``` ### Building an image using a URL, Git repo, or archive |