├── .gitignore ├── Makefile ├── README.md ├── common ├── Makefile ├── mesos-dns.conf ├── mesos-dns.init ├── mesos-dns.postinst ├── mesos-dns.postrm └── mesos-dns.service ├── debian-wheezy └── Dockerfile ├── docker-rootfs ├── Dockerfile └── etc │ ├── group │ ├── hostname │ ├── hosts │ ├── nsswitch.conf │ ├── passwd │ └── resolv.conf ├── docker └── Dockerfile ├── el6 └── Dockerfile ├── el7 └── Dockerfile └── ubuntu1404 └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/README.md -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/mesos-dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/common/mesos-dns.conf -------------------------------------------------------------------------------- /common/mesos-dns.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/common/mesos-dns.init -------------------------------------------------------------------------------- /common/mesos-dns.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/common/mesos-dns.postinst -------------------------------------------------------------------------------- /common/mesos-dns.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/common/mesos-dns.postrm -------------------------------------------------------------------------------- /common/mesos-dns.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/common/mesos-dns.service -------------------------------------------------------------------------------- /debian-wheezy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/debian-wheezy/Dockerfile -------------------------------------------------------------------------------- /docker-rootfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/docker-rootfs/Dockerfile -------------------------------------------------------------------------------- /docker-rootfs/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/docker-rootfs/etc/group -------------------------------------------------------------------------------- /docker-rootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-rootfs/etc/hosts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-rootfs/etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/docker-rootfs/etc/nsswitch.conf -------------------------------------------------------------------------------- /docker-rootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/docker-rootfs/etc/passwd -------------------------------------------------------------------------------- /docker-rootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /el6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/el6/Dockerfile -------------------------------------------------------------------------------- /el7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/el7/Dockerfile -------------------------------------------------------------------------------- /ubuntu1404/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2iq-archive/mesos-dns-pkg/HEAD/ubuntu1404/Dockerfile --------------------------------------------------------------------------------