mirror of
https://github.com/luzifer-docker/personal-dns.git
synced 2024-11-12 19:42:41 +00:00
8 lines
192 B
Bash
Executable file
8 lines
192 B
Bash
Executable file
#!/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
|