diff options
Diffstat (limited to 'contrib/podmanimage/README.md')
-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 |