-
I use Example output:
|
Beta Was this translation helpful? Give feedback.
Answered by
Luap99
Jun 9, 2023
Replies: 1 comment 2 replies
-
podman kill is just sending a signal, just like the kill command it is always async. If you want to stop containers use |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
maflcko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
podman kill is just sending a signal, just like the kill command it is always async.
If you want to stop containers use
podman stop
that will block until the container is actually stopped and cleaned up by podman.