Heimdall: Can't save any settings since today's version
Here is what worked for me so far:
docker run -d --name=portal \ -v /home/ovi/docker/heimdall/config:/config \ --expose 80 \ --expose 443 \ --restart unless-stopped \ -e TZ=Europe/Berlin \ --label traefik.port=80 \ --label traefik.frontend.rule=Host:portal.mydomain.tld \ --label traefik.backend=portal \ --label traefik.enable=true \ linuxserver/heimdall
today I wanted to add authentication (via the front-end proxy traefik) and updated heimdall to the latest image which seems to have switched to alpine today. Here is my new run script:
docker run -d --name=portal \ -v /home/ovi/docker/heimdall/config:/config \ --expose 80 \ --expose 443 \ --restart unless-stopped \ -e TZ=Europe/Berlin \ --label traefik.port=80 \ --label traefik.frontend.rule=Host:portal.mydomain.tld \ --label traefik.backend=portal \ --label traefik.enable=true \ --label 'traefik.frontend.auth.basic=ovi:$apr1$MYPASSWORD/G5iDso0' \ linuxserver/heimdall
The problem now is that I can’t add any bookmarks or change any settings it looks like everything is read only 😦
I checked the heimdall documentation and added:
-e PGID=911 \ -e PUID=911 \
since the folder which contains the data which has worked until my fiddling today looks like this:
ls -al config/ total 28 drwxr-xr-x 7 911 911 4096 Jul 18 12:35 . drwxr-xr-x 3 root root 4096 Sep 6 11:30 .. drwxr-xr-x 2 911 911 4096 Jul 18 12:35 keys drwxr-xr-x 4 911 911 4096 Jul 18 12:35 log drwxrwxr-x 3 911 911 4096 Jul 18 12:35 nginx drwxr-xr-x 2 911 911 4096 Jul 18 12:35 php drwxrwxr-x 4 911 911 4096 Jul 18 13:21 www
docker inspect -f ‘{{ index .Config.Labels “build_version” }}’ portal Linuxserver.io version:- 70 Build-date:- September-05-2018-18:11:48-UTC
docker inspect -f ‘{{ index .Config.Labels “build_version” }}’ linuxserver/heimdall Linuxserver.io version:- 70 Build-date:- September-05-2018-18:11:48-UTC
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 32 (11 by maintainers)
Just put out a new release 1.4.16, if you are running this release simply add
FORCE_HTTPS=true
to your .env