From f7dd8325178d609ff71b54ea58422cc43320c901 Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Fri, 7 Jul 2023 13:58:15 +0300 Subject: [PATCH] Pull request 1909: 5939-rm-healthcheck Updates #5939. Squashed commit of the following: commit 087309b4ef100e97339f49cf1c2e90ba2fa4293f Merge: 360df813d c21f958ea Author: Ainar Garipov Date: Fri Jul 7 13:18:52 2023 +0300 Merge branch 'master' into 5939-rm-healthcheck commit 360df813d995f935c591aaea9c56fe4372ca2281 Author: Ainar Garipov Date: Wed Jul 5 14:16:18 2023 +0300 all: rm docker healthcheck --- CHANGELOG.md | 21 ++++++- docker/Dockerfile | 33 ++--------- docker/dns-bind.awk | 29 ---------- docker/healthcheck.sh | 107 ----------------------------------- docker/web-bind.awk | 5 -- scripts/make/build-docker.sh | 12 ---- 6 files changed, 24 insertions(+), 183 deletions(-) delete mode 100644 docker/dns-bind.awk delete mode 100755 docker/healthcheck.sh delete mode 100644 docker/web-bind.awk diff --git a/CHANGELOG.md b/CHANGELOG.md index 63a2e1ce..2e88d5b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,11 +57,26 @@ In this release, the schema version has changed from 23 to 24. To rollback this change, remove the new object `log`, set back `log_` and `verbose` properties and change the `schema_version` back to `23`. +### Deprecated + +- Default exposure of the non-standard ports 784 and 8853 for DNS-over-QUIC in + the `Dockerfile`. + ### Fixed - Excessive RAM and CPU consumption by Safe Browsing and Parental Control filters ([#5896]). +### Removed + +- The `HEALTHCHECK` section and the use of `tini` in the `ENTRYPOINT` section in + `Dockerfile` ([#5939]). They caused a lot of issues, especially with tools + like `docker-compose` and `podman`. + + **NOTE:** Some Docker tools may cache `ENTRYPOINT` sections, so some users may + be required to backup their configuration, stop the container, purge the old + image, and reload it from scratch. + [#5896]: https://github.com/AdguardTeam/AdGuardHome/issues/5896