Docker init 를 이용한 Defunct Processes in Docker 해결


Docker init 를 이용한 Defunct Processes in Docker 해결

docker-init Docker document 를 살펴보면 다음과 같은 설명을 볼 수 있다. Specify an init process You can use the --init flag to indicate that an init process should be used as the PID 1 in the container. Specifying an init process ensures the usual responsibilities of an init system, such as reaping zombie processes, are performed inside the created container. The default init process used is the first docker-init executable found in the system path of the Docker daemon process. This docker-init binary, included in the default installation, is backed by tini. docker run 수행 시 --init 옵션이 주..........



원문링크 : Docker init 를 이용한 Defunct Processes in Docker 해결