commit 79c0a1e0a15dd226ee86e18cc20ef1046a044c95 Author: john Date: Mon Jan 26 01:28:31 2026 +0000 Add 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