The issue I am facing:
This is what happens, in particular:
1)Web Admin Interface is active and reachable: when I try to log-in I'm redirected on the Dashboard like I'm not logged in. (fewer data, no lateral menu)
-
If I log-in by CTRL+ENTER then I'm correctly redirected to the Settings panel and the lateral menu shows all the options. But trying to access any other section or simply trying to load the Dashboard leads back to 1)
-
If I disable password for the WEB Interface via "sudo pihole -a -p" command the interface will show all details but I'm unable to apply any change. If I try to edit something (for example: adding a blacklist entry) the following error is displayed: "Wrong token! Please re-login on the Pi-hole dashboard."
-
I am in a Docker container using a Raspberry Pi 3+.
Details about my system:
Raspberry 3+ running OMV and docker portainer (PiHole is in a docker)
What I have changed since installing Pi-hole:
1st installation, below yaml file
version: "3"
services:
PiHole:
image: pihole/pihole:latest
container_name: PiHole
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "80:80/tcp"
- "443:443/tcp"
environment:
TZ: 'Europe/Rome'
WEBPASSWORD: '7022/12abc' #Your Password Goes Here
ServerIP: '192.168.0.100' #Your Server IP Goes Here
# Volumes store your data between container upgrades
volumes:
- '/srv/dev-disk-by-uuid-1CC0E736C0E714B4/PiHole/config/etc-pihole/:/etc/pihole/'
- '/srv/dev-disk-by-uuid-1CC0E736C0E714B4/PiHole/config/etc-dnsmasq.d/:/etc/dnsmasq.d/'
cap_add:
- NET_ADMIN
restart: unless-stopped