mailcow/data/Dockerfiles/unbound/docker-entrypoint.sh

9 lines
220 B
Bash
Raw Normal View History

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