From 9ced1871349c1e67826a9ea874bcb0ec67262cfa Mon Sep 17 00:00:00 2001 From: Chris Crowe Date: Mon, 4 Feb 2019 21:03:59 -0800 Subject: [PATCH] Adding sample configs --- docker-compose.yaml | 2 +- pihole/config/dnsmasq.conf | 2 ++ pihole/config/hosts | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 pihole/config/dnsmasq.conf create mode 100755 pihole/config/hosts diff --git a/docker-compose.yaml b/docker-compose.yaml index 8329fcf..907b234 100755 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,7 +4,7 @@ services: pihole: container_name: pihole image: pihole/pihole:latest - hostname: syn-hole + hostname: pi-hole mac_address: d0:ca:ab:cd:ef:01 cap_add: - NET_ADMIN diff --git a/pihole/config/dnsmasq.conf b/pihole/config/dnsmasq.conf new file mode 100755 index 0000000..8f77de7 --- /dev/null +++ b/pihole/config/dnsmasq.conf @@ -0,0 +1,2 @@ +address=/gateway/192.168.1.1 +address=/pi-hole/pi-hole.local/192.168.1.248 \ No newline at end of file diff --git a/pihole/config/hosts b/pihole/config/hosts new file mode 100755 index 0000000..d0bbdde --- /dev/null +++ b/pihole/config/hosts @@ -0,0 +1,5 @@ +127.0.0.1 pi-hole +::1 pi-hole + +192.168.1.1 gateway +192.168.1.248 pi-hole \ No newline at end of file