From ba25dbf7a94e3e968c177ff59c5c453ab65a2c68 Mon Sep 17 00:00:00 2001 From: jon r Date: Thu, 10 Oct 2024 19:40:22 +0200 Subject: [PATCH] feat(compose.net): switch docker0 helper container to default --- compose.net.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/compose.net.yml b/compose.net.yml index 716cdd855..dd28b603a 100644 --- a/compose.net.yml +++ b/compose.net.yml @@ -2,8 +2,13 @@ name: funkwhale-services include: - path: compose/net.dnsmasq.yml - path: compose/net.traefik.yml - # Uncomment the following line if your docker0 network does - # not stay up, since it is empty and has no containers - # attached to it. - # - path: compose/net.helpers.docker0.yml + # Nowadays people rarely use the default `bridge` network in + # Docker (called `docker0` on the host system), why it often + # has no containers present. + # While we try to attach to the interface with the two services + # above, its link state will only be `UP` if at least one + # containers is connected, what this noop helper is for. + # Comment out the following line if you have other containers + # present on the docker0 network. + - path: compose/net.helpers.docker0.yml - path: compose/net.verify.yml