DNS is a small DNS server with etcd as database backend
1.8K
DNS (ITDNS in cases where it may be confusing) is a small DNS server with etcd as database backend. The purpose of DNS is serving the corect IP to a hostname in a CoreOS cluster with a low ttl.
DNS is a lightweigt system ment to serve simple records, don't excpect any magic.
You can use use DNS in two setups. Docker and in a standard server with Node.JS. ###Docker
docker pull meyskens/dnsdocker run -e DISCOVER="https://discovery.etcd.io/KEY" -p 53:53 --name DNS meyskens/dnsetcdctl set "/DNS/sub.doma.in/A/" "[{"value":"127.0.0.1","ttl":10}]"###Node.JS
srcnpm installnode server.js "https://discovery.etcd.io/KEY"etcdctl set "/DNS/sub.doma.in/A/" "[{"value":"127.0.0.1","ttl":10}]"Content type
Image
Digest
sha256:8fcedc5dc…
Size
159.8 MB
Last updated
about 11 years ago
docker pull meyskens/dns