'docker wait' might be handy, it prints the container's exit code.

$ CT=$(docker run -d nginx); docker stop $CT > /dev/null && docker wait
$CT; docker rm $CT > /dev/null

Would print 0 (graceful exit) when the signals are coming through, and
137 (killed with SIGKILL) on a buggy distro


root@noble:~# CT=$(docker run -d nginx); docker stop $CT > /dev/null && docker 
wait $CT; docker rm $CT > /dev/null
137

root@jammy:~# CT=$(docker run -d nginx); docker stop $CT > /dev/null && docker 
wait $CT; docker rm $CT > /dev/null
0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065423

Title:
  Update AppArmor template to allow confined runc to kill containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/containerd-app/+bug/2065423/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to