pihole.yaml 380 B

123456789101112131415161718192021
  1. ---
  2. version: '3'
  3. services:
  4. pihole:
  5. container_name: pihole
  6. image: pihole/pihole:latest
  7. ports:
  8. - "53:53/tcp"
  9. - "53:53/udp"
  10. - "67:67/udp"
  11. - "80:80/tcp"
  12. - "443:443/tcp"
  13. environment:
  14. TZ: 'Europe/Berlin'
  15. WEBPASSWORD: 'testtest'
  16. volumes:
  17. - etcd:/etc/pihole
  18. - dnsmasq:/etc/dnsmasq.d
  19. restart: unless-stopped