From 6ca97d112ed4465e975c41ad0966fb603ff98cfe Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Sun, 25 Jun 2023 18:32:05 +0200 Subject: [PATCH 1/2] Document that the default config for netplan is broken --- docs/faq.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/faq.rst b/docs/faq.rst index 06d9ef05..1d22d430 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -873,9 +873,12 @@ We have seen a fair amount of support requests related to the following: - dnsmasq won't forward DNSSEC results unless instructed to do so. If you are running openwrt or pi-hole, you do need to enable DNSSEC. - `coredns has a bug`_ that we have now worked around +- `netplan does not play nicely with docker` by default and may need to be configured to leave docker's network alone. .. _`coredns has a bug`: https://github.com/coredns/coredns/issues/5189 +.. _`netplan does not play nicely with docker`: https://github.com/Mailu/Mailu/issues/2868#issuecomment-1606014184 + How can I add more languages to roundcube's spellchecker? ````````````````````````````````````````````````````````` From e1e765bc00fa92131b18295d6129eded071833a8 Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Sun, 25 Jun 2023 18:40:16 +0200 Subject: [PATCH 2/2] Add a clue --- optional/unbound/start.py | 1 + 1 file changed, 1 insertion(+) diff --git a/optional/unbound/start.py b/optional/unbound/start.py index e9e06a48..48e25a67 100755 --- a/optional/unbound/start.py +++ b/optional/unbound/start.py @@ -10,3 +10,4 @@ system.set_env() conf.jinja("/unbound.conf", os.environ, "/etc/unbound/unbound.conf") os.execv("/usr/sbin/unbound", ["unbound", "-c", "/etc/unbound/unbound.conf"]) +print('Unbound has terminated. If the container keeps restarting, check the internet connectivity of other containers using for instance "docker compose exec front ping example.com"')