2
0

docker-entrypoint.sh 242 B

123456789
  1. #!/bin/bash
  2. unbound-control-setup
  3. echo "Receiving anchor key..."
  4. /usr/sbin/unbound-anchor -a /etc/unbound/trusted-key.key
  5. echo "Receiving root hints..."
  6. curl -#o /etc/unbound/root.hints https://www.internic.net/domain/named.cache
  7. exec "$@"