Pihole in docker binding to reserved port, need help

I swapped out my router yesterday and for whatever dumb reason, i decided to do a fresh start with pihole on my system. I can no longer access pihole from lan and for the life of me, i cannot remember how to fix it. I face this problem every time i set the damn thing up, but i can no longer do pihole -r, so i have no idea what to do about it, and i cant remember how i fixed it last time.

The system is Windows 10 running Pihole in a Docker container

All i did was refresh my network config with the same exact settings : /

Debug log:

Edit:
I figured it out!!!!!!! I changed the pihole's systems connection from public to private, and it REALLY did not like that apparently. Changing it back to public fixed it instantly....

Setup:

docker run -d 
  --name pihole 
  -e ServerIP=192.168.1.117 
  -e WEBPASSWORD=******** 
  -e TZ=America/Los_Angeles 
  -e DNS1=68.105.28.11 
  -e DNS2=68.105.29.11 
  -p 80:80 
  -p 53:53/tcp 
  -p 53:53/udp 
  -p 443:443 
  --restart=unless-stopped 
  pihole/pihole:latest

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.