fix
This commit is contained in:
parent
b467c1d8be
commit
5e3346328f
|
@ -1,6 +1,6 @@
|
|||
FROM ubuntu/bind9:9.18-22.04_beta
|
||||
|
||||
LABEL version="20240627.1.2"
|
||||
LABEL version="20240627.1.3"
|
||||
LABEL description="bind9 primary nameserver"
|
||||
|
||||
ENV BIND_LIB_DIR=/var/lib/bind
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM ubuntu/bind9:9.18-22.04_beta
|
||||
|
||||
LABEL version="20240627.1.2"
|
||||
LABEL version="20240627.1.3"
|
||||
LABEL description="bind9 secondary nameserver"
|
||||
|
||||
ENV BIND_LIB_DIR=/var/lib/bind
|
||||
|
|
|
@ -18,7 +18,7 @@ services:
|
|||
container_name: ns1
|
||||
build:
|
||||
dockerfile: Dockerfile.primary
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-primary:240627.1.2
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-primary:240627.1.3
|
||||
restart: always
|
||||
user: root
|
||||
environment:
|
||||
|
@ -41,7 +41,7 @@ services:
|
|||
container_name: ns2
|
||||
build:
|
||||
dockerfile: Dockerfile.secondary
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-secondary:240627.1.2
|
||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/bind9-secondary:240627.1.3
|
||||
restart: always
|
||||
user: root
|
||||
environment:
|
||||
|
|
|
@ -15,6 +15,7 @@ options {
|
|||
directory "/var/lib/bind";
|
||||
dump-file "/var/log/named_dump.db";
|
||||
statistics-file "/var/log/named.stats";
|
||||
forwarders { 8.8.8.8; 9.9.9.9; };
|
||||
allow-recursion { internal-nets; };
|
||||
version "PiSS 0FF D0nK3y.";
|
||||
notify yes;
|
||||
|
|
|
@ -15,6 +15,7 @@ options {
|
|||
directory "/var/lib/bind";
|
||||
dump-file "/var/log/named_dump.db";
|
||||
statistics-file "/var/log/named.stats";
|
||||
forwarders { 8.8.8.8; 9.9.9.9; };
|
||||
allow-recursion { internal-nets; };
|
||||
version "PiSS 0FF D0nK3y.";
|
||||
notify yes;
|
||||
|
|
Loading…
Reference in New Issue