From b0419f0af1ccc397a22581fed3a263160657c852 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 19 Apr 2026 16:29:40 +0100 Subject: [PATCH] Update bind9vm/docker-compose.yml Convert to using local BIND volumes rather than shared. The zone file is sync-ed automatically when the serial number is changed. --- bind9vm/docker-compose.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/bind9vm/docker-compose.yml b/bind9vm/docker-compose.yml index 9bb1e19..24a3139 100644 --- a/bind9vm/docker-compose.yml +++ b/bind9vm/docker-compose.yml @@ -11,16 +11,7 @@ services: - "53:53/tcp" - "53:53/udp" volumes: - - config:/etc/bind - - cache:/var/cache/bind - - records:/var/lib/bind + - /docker/bind9/config:/etc/bind + - /docker/bind9/cache:/var/cache/bind + - /docker/bind9/records:/var/lib/bind restart: unless-stopped - -volumes: - cache: - records: - config: - driver_opts: - type: cifs - o: "username=john,password=mary1948" - device: "//192.168.1.7/BIND9/config" # share on VALHALLA \ No newline at end of file