adjust run script

This commit is contained in:
David Blacka 2023-02-25 14:51:25 -05:00
parent 6092f80cb2
commit acd6b02727
2 changed files with 39 additions and 39 deletions

View File

@ -71,7 +71,7 @@ zone "ecotroph.net" {
# };
# Note: no longer registered
zone "fallschurchdissident.us" {
# zone "fallschurchdissident.us" {
# type primary;
# file "/var/lib/bind/fallschurchdissident.us";
# notify yes;
@ -85,7 +85,7 @@ zone "fallschurchdissident.us" {
# };
# Note: no longer registered
zone "fallschurchdissident.com" {
# zone "fallschurchdissident.com" {
# type primary;
# file "/var/lib/bind/fallschurchdissident.com";
# notify yes;

View File

@ -3,7 +3,8 @@
BASE_CONF_DIR=/etc/bind
: "${DNS_PORT:=53}"
: "${RNDC_PORT:=953}"
[ "$1" = "interactive" ] && ARGS="-ti --entrypoint=/bin/bash"
CMD="/usr/sbin/named -c /etc/bind/named.conf -4 -f"
[ "$1" = "interactive" ] && ARGS="-ti --entrypoint=/bin/bash" && CMD=""
# shellcheck disable=SC2086
docker run $ARGS \
@ -17,5 +18,4 @@ docker run $ARGS \
-v $BASE_CONF_DIR/cache:/var/cache/bind \
-v $BASE_CONF_DIR/zones:/var/lib/bind \
-v $BASE_CONF_DIR/log:/var/log \
docker.io/internetsystemsconsortium/bind9:9.18 \
/usr/sbin/named -c /etc/bind/named.conf -4 -f
docker.io/internetsystemsconsortium/bind9:9.18 $CMD