2
0

docker-entrypoint.sh 220 B

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