-
I'm running AdGuard Home in a Podman container (pulled docker.io/adguard/adguardhome:edge). The service starts and the logs tell me to browse to http://serverip:3000/install.html A nice introduction page is served but when I click "Get started", the screen goes blank. The javascript console shows an error though:
The :3001 beta page does load correctly. Might it have something to do with the -h 0.0.0.0 option that is passed by default? Reason is that after finishing the setup-wizard, it redirects me to this IP which doesn't respond obviously. EDIT version: "3"
services:
adguardhome:
container_name: adguardhome
image: adguard/adguardhome:edge
# specifying user doesn't work because "needs to be run as administrator"
#user: 1000:1000
#network_mode: host
ports:
- 53:53
- 3000:3000/tcp
volumes:
- /home/podmanager/adguard/work:/opt/adguardhome/work:Z
- /home/podmanager/adguard/conf:/opt/adguardhome/conf:Z
restart: unless-stopped |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Updated the image and the issue is solved. There seemed to be a delay between the releases and the images on the Docker hub. |
Beta Was this translation helpful? Give feedback.
Updated the image and the issue is solved. There seemed to be a delay between the releases and the images on the Docker hub.