mirror of
https://github.com/luzifer-docker/personal-dns.git
synced 2024-11-10 02:30:01 +00:00
9 lines
192 B
Bash
9 lines
192 B
Bash
|
#!/usr/local/bin/dumb-init /bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
# Start bind in background
|
||
|
named -p 1053 -c /etc/bind/named.conf -g &
|
||
|
|
||
|
# Start coredns to filter blacklist
|
||
|
coredns -conf /etc/Corefile
|