diff --git a/images/docker-quassel-core/index.html b/images/docker-quassel-core/index.html index b920497486..766b8c20e0 100644 --- a/images/docker-quassel-core/index.html +++ b/images/docker-quassel-core/index.html @@ -21,7 +21,7 @@ - TZ=Etc/UTC - RUN_OPTS=--config-from-environment #optional volumes: - - /path/to/data:/config + - /path/to/quassel-core/data:/config ports: - 4242:4242 - 113:10113 #optional @@ -34,7 +34,7 @@ -e RUN_OPTS=--config-from-environment `#optional` \ -p 4242:4242 \ -p 113:10113 `#optional` \ - -v /path/to/data:/config \ + -v /path/to/quassel-core/data:/config \ --restart unless-stopped \ lscr.io/linuxserver/quassel-core: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 |
---|---|
4242 | The port quassel-core listens for connections on. |
10113 | Optional Ident Port |
-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. |
RUN_OPTS=--config-from-environment | Custom CLI options for Quassel |
-v
)¶Volume | Function |
---|---|
/config | Database and quassel-core configuration storage. |
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
@@ -60,4 +60,4 @@
--pull \
-t lscr.io/linuxserver/quassel-core: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
.
0.13.0
See here..