lscr.io/linuxserver/heimdall:latest
should retrieve the correct image for your arch, but you can also pull specific arch images via tags.docker exec -it heimdall htpasswd -c /config/nginx/.htpasswd <username>
. Replace with a username of your choice and you will be asked to enter a password. New installs will automatically pick it up and implement password protected access. Existing users updating their image can delete their site config at /config/nginx/site-confs/default
and restart the container after updating the image. A new site config with htpasswd support will be created in its place.<external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.-p
)80
443
-e
)PUID=1000
PGID=1000
TZ=Europe/London
-v
)/config
FILE__
.PASSWORD
based on the contents of the /run/secrets/mysecretpassword
file.-e UMASK=022
setting. Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up here before asking for support.-v
flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID
and group PGID
.PUID=1000
and PGID=1000
, to find yours use id user
as below:docker exec -it heimdall /bin/bash
docker logs -f heimdall
docker inspect -f '{{ index .Config.Labels "build_version" }}' heimdall
docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/heimdall:latest
.env
rather than copy. It now resides under /config/www
.env
to /config
.