diff options
author | Jakub Guzik <jakubmguzik@gmail.com> | 2021-03-06 01:45:55 +0100 |
---|---|---|
committer | Jakub Guzik <jakubmguzik@gmail.com> | 2021-03-06 01:49:41 +0100 |
commit | 3ae580b0ef9be32b5168d1ddfe718a41dea2ca5e (patch) | |
tree | 91a87f83a46565c7ad9b7598475d3d56756209f8 /docs/source | |
parent | 2a7815726c74765ac5b097ba986b61687a63f77e (diff) | |
download | podman-3ae580b0ef9be32b5168d1ddfe718a41dea2ca5e.tar.gz podman-3ae580b0ef9be32b5168d1ddfe718a41dea2ca5e.tar.bz2 podman-3ae580b0ef9be32b5168d1ddfe718a41dea2ca5e.zip |
[ci skip] Bad formatting fix in build documentation
Signed-off-by: Jakub Guzik <jakubmguzik@gmail.com>
Diffstat (limited to 'docs/source')
-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 |