From dc9b7fda6743937d6b969423427ddbad579f7769 Mon Sep 17 00:00:00 2001 From: <> Date: Sun, 26 May 2024 08:26:28 +0000 Subject: [PATCH] Deployed a3742a24 with MkDocs version: 1.6.0 --- images/docker-quassel-web/index.html | 6 +++--- search/search_index.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/images/docker-quassel-web/index.html b/images/docker-quassel-web/index.html index a7a1f35d51..f5fb3221bb 100644 --- a/images/docker-quassel-web/index.html +++ b/images/docker-quassel-web/index.html @@ -13,7 +13,7 @@ - QUASSEL_HTTPS= #optional - URL_BASE=/quassel #optional volumes: - - /path/to/data:/config + - /path/to/quassel-web/data:/config ports: - 64080:64080 #optional - 64443:64443 #optional @@ -29,7 +29,7 @@ -e URL_BASE=/quassel `#optional` \ -p 64080:64080 `#optional` \ -p 64443:64443 `#optional` \ - -v /path/to/data:/config \ + -v /path/to/quassel-web/data:/config \ --restart unless-stopped \ lscr.io/linuxserver/quassel-web: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 |
---|---|
64080 | Quassel-web http webui |
64443 | Quassel-web https webui |
-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. |
QUASSEL_CORE=192.168.1.10 | specify the URL or IP address of your Quassel Core instance |
QUASSEL_PORT=4242 | specify the port of your Quassel Core instance |
QUASSEL_HTTPS= | Set to true to have Quassel web serve over https on port 64443 instead of http on port 64080. |
URL_BASE=/quassel | Specify a url-base in reverse proxy setups ie. /quassel |
-v
)¶Volume | Function |
---|---|
/config | this will store config on the docker host |
Parameter | Function |
---|---|
You can set any environment variable from a file by using a special prepend FILE__
.
As an example:
-e FILE__MYVAR=/run/secrets/mysecretvariable
@@ -55,4 +55,4 @@
--pull \
-t lscr.io/linuxserver/quassel-web: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
.