From 79c0a1e0a15dd226ee86e18cc20ef1046a044c95 Mon Sep 17 00:00:00 2001 From: john Date: Mon, 26 Jan 2026 01:28:31 +0000 Subject: [PATCH] Add bind9/docker-compose.yml --- bind9/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bind9/docker-compose.yml diff --git a/bind9/docker-compose.yml b/bind9/docker-compose.yml new file mode 100644 index 0000000..954985d --- /dev/null +++ b/bind9/docker-compose.yml @@ -0,0 +1,15 @@ +services: + bind9: + container_name: bind9 + image: ubuntu/bind9:latest + environment: + - BIND9_USER=root + - TZ=Europe/London + ports: + - "53:53/tcp" + - "53:53/udp" + volumes: + - /media/disk/bind9/config:/etc/bind + - /media/disk/bind9/cache:/var/cache/bind + - /media/disk/bind9/records:/var/lib/bind + restart: unless-stopped \ No newline at end of file