What is the exit condition for a Docker container regarding main process and child processes?
A Docker container running a (Windows) image will exit when its entrypoint (main) process exits. However what if the main process has started other processes before its own exit? Will the container still exit even if child processes are still running, or will the container keep running until child processes exit?