Skip to content

Instantly share code, notes, and snippets.

@steveseguin
Last active August 16, 2024 04:04
Show Gist options
  • Save steveseguin/af783e6727f9014320a0de5d58b6442d to your computer and use it in GitHub Desktop.
Save steveseguin/af783e6727f9014320a0de5d58b6442d to your computer and use it in GitHub Desktop.
Peplink + PiHole docker run command
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