I summarize: I have #zombie processes created by #wget command when doing an https request in the #healthcheck section of #DockerCompose
Zombie processes occur when child processes have completed execution, and their exit status needs to be read by the parent process.
A process in a #container is still a process on the host, so it takes up a PID on the host. Whatever you run in a container is PID 1 which means it has to install a signal handler to get that signal.
8/n