diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-27 04:49:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 04:49:58 -0800 |
commit | 7794fafdadd1c416164d5bca0964ae13b1bb3cc2 (patch) | |
tree | e23f2948eb37e53c0ba5c65a06c629ed13719727 /docs/source/markdown/podman-container-exists.1.md | |
parent | 408dc6f319acd3eccec1948f2d129e586c6d8680 (diff) | |
parent | bb66d78b2fd0bbf6faca58eccbf5ed56656d2efd (diff) | |
download | podman-7794fafdadd1c416164d5bca0964ae13b1bb3cc2.tar.gz podman-7794fafdadd1c416164d5bca0964ae13b1bb3cc2.tar.bz2 podman-7794fafdadd1c416164d5bca0964ae13b1bb3cc2.zip |
Merge pull request #4982 from rpjday/rpjday/exists_sudo
docs: remove reference to "sudo" in "podman exists" examples
Diffstat (limited to 'docs/source/markdown/podman-container-exists.1.md')
-rw-r--r-- | docs/source/markdown/podman-container-exists.1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/markdown/podman-container-exists.1.md b/docs/source/markdown/podman-container-exists.1.md index 4d988132b..3b4ca33e4 100644 --- a/docs/source/markdown/podman-container-exists.1.md +++ b/docs/source/markdown/podman-container-exists.1.md @@ -21,7 +21,7 @@ Print usage statement Check if an container called `webclient` exists in local storage (the container does actually exist). ``` -$ sudo podman container exists webclient +$ podman container exists webclient $ echo $? 0 $ @@ -29,7 +29,7 @@ $ Check if an container called `webbackend` exists in local storage (the container does not actually exist). ``` -$ sudo podman container exists webbackend +$ podman container exists webbackend $ echo $? 1 $ |