19
Feb
Steps:
Install Docker on your Mac
Open Terminal
run: docker pull pihole/pihole
Find your local IP with ipconfig getifaddr en0
Run Docker (change IP to your local IP and Password to your password, remove quotations)
docker run -d --name pihole -e ServerIP=YOUR_IP -e WEBPASSWORD="YOUR_PASSWORD" -e DNS1=8.8.8.8 -p 80:80 -p 53:53/tcp -p 53:53/udp -p 443:443 pihole/pihole:latest
Change the Local DNS to your docker :
networksetup -setdnsservers Ethernet 127.0.0.1...
Read More