Last active
August 16, 2024 04:04
-
-
Save steveseguin/af783e6727f9014320a0de5d58b6442d to your computer and use it in GitHub Desktop.
Peplink + PiHole docker run command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -d \ | |
--name pihole \ | |
--ip 192.168.50.100 | |
-p 53:53/tcp \ | |
-p 53:53/udp \ | |
-p 67:67/udp \ | |
-p 547:547/udp \ | |
-p 547:547/udp \ | |
-p 80:80/tcp \ | |
-p 4711:4711/tcp \ | |
-e TZ="America/New_York" \ | |
--dns=1.1.1.1 \ | |
-e WEBPASSWORD=PASSWORDHERE \ | |
-e FTLCONF_LOCAL_IPV4=192.168.50.100 \ | |
-e DNSMASQ_USER=root \ | |
-e DNSMASQ_LISTENING=all \ | |
pihole/pihole:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment