diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-28 12:56:55 -0500 |
---|---|---|
committer | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-01-28 12:56:55 -0500 |
commit | 8c825cdaaec3c4396c9f0cc6594e367121067d17 (patch) | |
tree | d0827a1e3a164518212c71b462996fbee55e232b /docs/source/markdown/podman-build.1.md | |
parent | 6cb0f85933ec08995198f4384733f596b2e20cf5 (diff) | |
download | podman-8c825cdaaec3c4396c9f0cc6594e367121067d17.tar.gz podman-8c825cdaaec3c4396c9f0cc6594e367121067d17.tar.bz2 podman-8c825cdaaec3c4396c9f0cc6594e367121067d17.zip |
docs: replace '~' with $HOME in markdown as '~' isn't rendered properly
Apparently, a tilde is currently rendered as a single space, making
a mess of command examples that use it, so use $HOME instead.
https://github.com/mattermost/mattermost-server/issues/8228
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'docs/source/markdown/podman-build.1.md')
-rw-r--r-- | docs/source/markdown/podman-build.1.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/markdown/podman-build.1.md b/docs/source/markdown/podman-build.1.md index fac8296ad..0f3bfa0d3 100644 --- a/docs/source/markdown/podman-build.1.md +++ b/docs/source/markdown/podman-build.1.md @@ -633,11 +633,11 @@ $ podman build . $ podman build -f Containerfile.simple . -$ cat ~/Dockerfile | podman build -f - . +$ cat $HOME/Dockerfile | podman build -f - . $ podman build -f Dockerfile.simple -f Containerfile.notsosimple . -$ podman build -f Dockerfile.in ~ +$ podman build -f Dockerfile.in $HOME $ podman build -t imageName . @@ -649,7 +649,7 @@ $ podman build --runtime-flag log-format=json . $ podman build --runtime-flag debug . -$ podman build --authfile /tmp/auths/myauths.json --cert-dir ~/auth --tls-verify=true --creds=username:password -t imageName -f Dockerfile.simple . +$ podman build --authfile /tmp/auths/myauths.json --cert-dir $HOME/auth --tls-verify=true --creds=username:password -t imageName -f Dockerfile.simple . $ podman build --memory 40m --cpu-period 10000 --cpu-quota 50000 --ulimit nofile=1024:1028 -t imageName . |