job "pihole" { datacenters = ["homelab"] priority = 100 meta { force = 1 } type = "service" constraint { attribute = "${attr.cpu.arch}" value = "amd64" } constraint { attribute = "${node.class}" operator = "set_contains" value = "cluster" } group "pi-hole" { network { port "dns" { static = 53 } port "http" { } } service { name = "pihole-gui" tags = ["pihole", "admin", "homer.enable=true", "homer.name=Pi-hole", "homer.service=Application", "homer.type=PiHole", "homer.logo=http://192.168.1.4:${NOMAD_PORT_http}/admin/img/logo.svg", "homer.target=_blank", "homer.url=http://192.168.1.4:${NOMAD_PORT_http}/admin", ] port = "http" } task "server" { driver = "docker" service { name = "dns" port = "dns" } config { image = "pihole/pihole:2023.10.0" network_mode = "host" volumes = [ "local/dnsmasq.d/02-localresolver.conf:/etc/dnsmasq.d/02-localresolver.conf", "/mnt/diskstation/nomad/pihole:/etc/pihole" ] } vault { policies = ["pihole"] } env { TZ = "Europe/Paris" DNS1 = "192.168.1.5" DNS2 = "192.168.1.40" WEB_PORT = "${NOMAD_PORT_http}" } template { data = <