networks: proxy-net: external: true services: pihole: container_name: pihole image: pihole/pihole:latest ports: - "53:53/tcp" - "53:53/udp" - "3002:80/tcp" environment: TZ: 'Europe/Zurich' WEBPASSWORD: '${PIHOLE_PASSWORD}' volumes: - './containers_storage/pihole/etc:/etc/pihole' - './containers_storage/pihole/dnsmasq.d:/etc/dnsmasq.d' restart: unless-stopped networks: - proxy-net