Skip to content
Snippets Groups Projects

docker-compose.yml

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Raphael Bialon

    docker-compose settings for pihole

    docker-compose.yml 653 B
    version: "3.5"
    services:
            pihole:
                    image: pihole/pihole
                    ports:
                            - "53:53/tcp"
                            - "53:53/udp"
                            - "8080:80/tcp"
                    environment:
                            - "ServerIP=192.168.178.23"
                            - "ServerIPv6=fe80::d2bf:9cff:fe45:87ec"
                            - "WEBPASSWORD=<CHANGE HERE>"
                            - "TZ=Europe/Berlin"
                    volumes:
                            - "./pihole/:/etc/pihole/"
                            - "./dnsmasq.d/:/etc/dnsmasq.d/"
                    restart: always
                    tty: true
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment