diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-07-23 12:14:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 12:14:40 +0200 |
commit | ce60c4d30c4acfa0c3ec9fc584c7eb88f84ac35f (patch) | |
tree | a5cebd4669009e44deedb64dace859dd1fc4edb9 | |
parent | 26749204d5fcd333706bef187b75cd3c6b39b835 (diff) | |
parent | 6dc0f1bec3eb170b7682110e54e0a7fece862a37 (diff) | |
download | podman-ce60c4d30c4acfa0c3ec9fc584c7eb88f84ac35f.tar.gz podman-ce60c4d30c4acfa0c3ec9fc584c7eb88f84ac35f.tar.bz2 podman-ce60c4d30c4acfa0c3ec9fc584c7eb88f84ac35f.zip |
Merge pull request #3623 from TomSweeneyRedHat/dev/tsweeney/pimagereadme
Change wait to sleep in podmanimage readme
-rw-r--r-- | contrib/podmanimage/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/podmanimage/README.md b/contrib/podmanimage/README.md index 79484d4a3..3dc07ad63 100644 --- a/contrib/podmanimage/README.md +++ b/contrib/podmanimage/README.md @@ -30,7 +30,7 @@ mkdir /var/lib/mycontainer # Run the image detached using the host's network in a container name # podmanctr, turn off label and seccomp confinement in the container # and then do a little shell hackery to keep the container up and running. -podman run --detach --name=podmanctr --net=host --security-opt label=disable --security-opt seccomp=unconfined --device /dev/fuse:rw -v /var/lib/mycontainer:/var/lib/containers:Z --privileged stable sh -c 'while true ;do wait; done' +podman run --detach --name=podmanctr --net=host --security-opt label=disable --security-opt seccomp=unconfined --device /dev/fuse:rw -v /var/lib/mycontainer:/var/lib/containers:Z --privileged stable sh -c 'while true ;do sleep 100000 ; done' podman exec -it podmanctr /bin/sh |