services: pihole: image: pihole/pihole:latest container_name: pihole ports: - "53:53/tcp" - "53:53/udp" - "67:67/udp" - "80:80/tcp" - "443:443/tcp" environment: TZ: 'Europe/London' FTLCONF_webserver_api_password: '43RadleyRoad' FTLCONF_dns_listeningMode: all volumes: - '/docker/pihole:/etc/pihole' cap_add: - NET_ADMIN restart: unless-stopped