diff --git a/dns/coredns/docker-compose.yml b/dns/coredns/docker-compose.yml new file mode 100644 index 0000000..e7e86e5 --- /dev/null +++ b/dns/coredns/docker-compose.yml @@ -0,0 +1,12 @@ +services: + coredns: + image: coredns/coredns:latest + container_name: coredns + command: -conf /etc/coredns/Corefile -dns.port 53 + ports: + - "53:53" + - "53:53/udp" + - "8080:8080" + volumes: + - ./Corefile:/etc/coredns/Corefile + - ./db.kendricklab.int:/etc/coredns/db.kendricklab.int