- logo! (#12)
- initial Docker Networks and IPv6 support (#14)
- compile against Go 1.6
- smaller binaries (~33% savings; ~9M down to ~6M)
- Alpine-based image
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
--restart always \
--name rawdns \
tianon/rawdns:1.4
dig @$(docker inspect -f '{{.NetworkSettings.IPAddress}}' rawdns) rawdns.docker
curl -o rawdns -fSL "https://github.com/tianon/rawdns/releases/download/1.4/rawdns-$(dpkg --print-architecture)"
chmod +x rawdns
# or
wget -O rawdns "https://github.com/tianon/rawdns/releases/download/1.4/rawdns-$(dpkg --print-architecture)"
chmod +x rawdns