diff --git a/Docker.md b/Docker.md index e8ddc36..9f18cd2 100644 --- a/Docker.md +++ b/Docker.md @@ -224,3 +224,37 @@ your machine: ```sh systemctl reload-or-restart systemd-resolved ``` + + + +## Known issues + + ### Healthcheck + +Since **v0.107.28** the container uses Docker-provided healthcheck mechanism. +If the implementation of the healthcheck script causes any issues with custom +Docker images and orchestration tools (like [#5711], [#5713]), then we recommend +disabling it by adding `--no-healthcheck` to the `docker run` command or using +your tool's equivalent. + +(The actual change was made due to a necessity to handle zombie processes of +`wget` instances, see [PID 1 Docker problem][pid1]). + + + +[#5711]: https://github.com/AdguardTeam/AdGuardHome/issues/5711 +[#5713]: https://github.com/AdguardTeam/AdGuardHome/issues/5713 + +[pid1]: https://blog.phusion.nl/2015/01/20/docker-and-the-pid-1-zombie-reaping-problem