commit b6aa33b35d7635c53c133e4d033c7022d8362bf6 Author: Tord-Vincent Heggland Date: Fri Apr 3 20:58:13 2026 +0200 first diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..fa8581f --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +version: "3.8" + +services: + unbound: + image: mvance/unbound:latest + container_name: unbound + restart: unless-stopped + networks: + - dns_net + +networks: + dns_net: + external: true