From a606a25922122a3e5085fe25f934173c301b3c49 Mon Sep 17 00:00:00 2001 From: thomas Date: Sun, 11 May 2025 17:50:31 +0000 Subject: [PATCH] =?UTF-8?q?bind-docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bind-docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 bind-docker-compose.yml diff --git a/bind-docker-compose.yml b/bind-docker-compose.yml new file mode 100644 index 0000000..ae86413 --- /dev/null +++ b/bind-docker-compose.yml @@ -0,0 +1,17 @@ +services: + bind9_slave: + image: ubuntu/bind9 + container_name: ${SERVER_NAME} + volumes: + - ${BIND_CONFIG}:/etc/bind/named.conf + - ${VOL_SLAVE_ZONES}:/var/lib/bind + ports: + - "53:53/tcp" + - "53:53/udp" + networks: + - dns_network + user: ${USER} + +networks: + dns_network: + driver: bridge \ No newline at end of file