Comment on set up local DNS using Pi-hole + nginx + audiobookshelf
happeningtofry99158@lemmy.world 4 days agoThank you! Can you also explain the difference between
networks: default: external: true name: scoobydoo
and
networks: scoobydoo: external: true
BigDogDave@lemmy.world 4 days ago
default
in this example is the actual name of the network, in this case we’re modifying the default network.external: true
declares that the network has already been created,name: scoobydoo
is a way of customizing the name of the default network.happeningtofry99158@lemmy.world 3 days ago
thanks a lot!