From 2c77411eadd6384cb565d7c17dab79f366789be9 Mon Sep 17 00:00:00 2001 From: <> Date: Wed, 20 Mar 2024 19:51:44 +0000 Subject: [PATCH] Deployed 2d541713 with MkDocs version: 1.5.3 --- images/docker-raneto/index.html | 6 +++--- search/search_index.json | 2 +- sitemap.xml.gz | Bin 1899 -> 1899 bytes 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/images/docker-raneto/index.html b/images/docker-raneto/index.html index f69a3cb0bd..e18a1c8dbf 100644 --- a/images/docker-raneto/index.html +++ b/images/docker-raneto/index.html @@ -8,7 +8,7 @@ - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/appdata:/config + - /path/to/raneto/data:/config ports: - 3000:3000 restart: unless-stopped @@ -18,7 +18,7 @@ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 3000:3000 \ - -v /path/to/appdata:/config \ + -v /path/to/raneto/data:/config \ --restart unless-stopped \ lscr.io/linuxserver/raneto: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 | The port for the Raneto web interface |
-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 | Raneto config and Markdown files |
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
@@ -44,4 +44,4 @@
--pull \
-t lscr.io/linuxserver/raneto: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
.