diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-28 10:54:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 10:54:05 -0800 |
commit | 8692467ad7250ebb270f90b368434e48ad74ed2f (patch) | |
tree | 3a42afa2165fde761a5981935d343cf3567bd1ac /docs/source/markdown/podman-build.1.md | |
parent | c2cde7de613198753ba53e4cde6dd157b883548c (diff) | |
parent | 8c825cdaaec3c4396c9f0cc6594e367121067d17 (diff) | |
download | podman-8692467ad7250ebb270f90b368434e48ad74ed2f.tar.gz podman-8692467ad7250ebb270f90b368434e48ad74ed2f.tar.bz2 podman-8692467ad7250ebb270f90b368434e48ad74ed2f.zip |
Merge pull request #5005 from rpjday/docs/tildes_HOME
docs: replace '~' with $HOME in markdown as '~' isn't rendered properly
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 . |