diff --git a/images/docker-mediaelch/index.html b/images/docker-mediaelch/index.html index cecf7a99ea..53f93d2e8f 100644 --- a/images/docker-mediaelch/index.html +++ b/images/docker-mediaelch/index.html @@ -13,7 +13,7 @@ - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/config:/config + - /path/to/mediaelch/config:/config ports: - 3000:3000 - 3001:3001 @@ -26,7 +26,7 @@ -e TZ=Etc/UTC \ -p 3000:3000 \ -p 3001:3001 \ - -v /path/to/config:/config \ + -v /path/to/mediaelch/config:/config \ --restart unless-stopped \ lscr.io/linuxserver/mediaelch:latest
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <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
)¶Parameter | Function |
---|---|
3000 | MediaElch desktop gui. |
3001 | MediaElch desktop gui HTTPS. |
-e
)¶Env | Function |
---|---|
PUID=1000 | for UserID - see below for explanation |
PGID=1000 | for GroupID - see below for explanation |
TZ=Etc/UTC | specify a timezone to use, see this list. |
-v
)¶Volume | Function |
---|---|
/config | Users home directory in the container, stores program settings and files. |
Parameter | Function |
---|---|
--security-opt seccomp=unconfined | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |
You can set any environment variable from a file by using a special prepend FILE__
.
As an example:
-e FILE__MYVAR=/run/secrets/mysecretvariable
@@ -52,4 +52,4 @@
--pull \
-t lscr.io/linuxserver/mediaelch:latest .
The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static
Once registered you can define the dockerfile to use with -f Dockerfile.aarch64
.