docker-pihole-unbound/docker-compose.yaml

55 lines
1.4 KiB
YAML
Raw Normal View History

2019-02-03 01:28:14 +01:00
version: '2'
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
2019-02-05 06:03:59 +01:00
hostname: pi-hole
2019-02-03 01:28:14 +01:00
mac_address: d0:ca:ab:cd:ef:01
cap_add:
- NET_ADMIN
ports:
- 443/tcp
- 53/tcp
- 53/udp
# - 67/udp # Uncomment if you want to use Pi-Hole for DHCP
2019-02-03 01:28:14 +01:00
- 80/tcp
environment:
ServerIP: 192.168.1.248
WEBPASSWORD: ${WEBPASSWORD}
DNS1: 192.168.1.249
DNS2: 192.168.1.13
volumes:
- /volume1/docker/pihole-unbound/pihole/volume:/etc/pihole:rw
- /volume1/docker/pihole-unbound/pihole/config/hosts:/etc/hosts:ro
- /volume1/docker/pihole-unbound/pihole/config/resolv.conf:/etc/resolv.conf:ro
- /volume1/docker/pihole-unbound/pihole/config/dnsmasq.conf:/etc/dnsmasq.d/02-network.conf:ro
- /volume1/docker/pihole-unbound/pihole/config/pihole-FTL.conf:/etc/pihole/pihole-FTL.conf:ro
networks:
home:
ipv4_address: 192.168.1.248
restart: always
unbound:
container_name: unbound
image: mvance/unbound:latest
hostname: syn-unbound
mac_address: d0:ca:ab:cd:ef:02
ports:
- 53/tcp
- 53/udp
networks:
home:
ipv4_address: 192.168.1.249
restart: always
networks:
home:
driver: macvlan
driver_opts:
parent: ovs_eth1
ipam:
config:
- subnet: 192.168.1.0/24
gateway: 192.168.1.1
ip_range: 192.168.1.248/30