From 3189b77b4e93e12128a3af232fa3793a2fa7eaf8 Mon Sep 17 00:00:00 2001 From: <> Date: Wed, 10 Jul 2024 10:58:51 +0000 Subject: [PATCH] Deployed bc54b4a6 with MkDocs version: 1.6.0 --- images/docker-kavita/index.html | 10 +- images/docker-mariadb/index.html | 6 +- images/docker-series-troxide/index.html | 2 +- .../index.html | 2 +- search/search_index.json | 2 +- sitemap.xml | 524 +++++++++--------- sitemap.xml.gz | Bin 1990 -> 1988 bytes 7 files changed, 273 insertions(+), 273 deletions(-) diff --git a/images/docker-kavita/index.html b/images/docker-kavita/index.html index e75989b496..aba58f0b09 100644 --- a/images/docker-kavita/index.html +++ b/images/docker-kavita/index.html @@ -8,8 +8,8 @@ - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/appdata/config:/config - - /path/to/data:/data + - /path/to/kavita/config:/config + - /path/to/data:/data #optional ports: - 5000:5000 restart: unless-stopped @@ -19,8 +19,8 @@ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 5000:5000 \ - -v /path/to/appdata/config:/config \ - -v /path/to/data:/data \ + -v /path/to/kavita/config:/config \ + -v /path/to/data:/data `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/kavita: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 |
---|---|
5000 | web gui |
-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 | Contains all relevant configuration files. |
/data | Media library containing manga, comics and books. |
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
@@ -46,4 +46,4 @@
--pull \
-t lscr.io/linuxserver/kavita: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
.