=align to new env var names

This commit is contained in:
Lockszmith (@avital) 2025-01-17 13:25:41 -08:00
parent ebb66667ef
commit 5d24c05f6a
16 changed files with 34 additions and 34 deletions

View File

@ -8,7 +8,7 @@ INTERNAL_IP="192.168.1.11"
# RUNTIPI's root on the docker host
# TIPI_VERSION="v3.8.0"
RUNTIPI_ROOT_FOL DER_HOST="/mnt/bobo/data/apps/runtipi"
RUNTIPI_ROOT_FOLDER_HOST="/mnt/<pool>/data/apps/runtipi"
# ALT_ROOT_DOMAIN=<alt domain> # optional, alternative public domain
ROOT_DOMAIN=<root.fqdn>

View File

@ -1,8 +1,8 @@
services:
code-server:
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /:/mnt/runtipi.host

View File

@ -1,8 +1,8 @@
services:
ddns-updater:
environment:
USER_UID: "${SZ_USER_UID}"
USER_GID: "${SZ_USER_GID}"
USER_UID: "${HOST_UID}"
USER_GID: "${HOST_GID}"
### Configuration
# DATADIR: "/updater/data"

View File

@ -1,2 +1,2 @@
SZ_USER_UID=<UID>
SZ_USER_GID=<GID>
HOST_UID=<UID>
HOST_GID=<GID>

View File

@ -16,10 +16,10 @@ services:
RUNTIPI_LOCAL_DOMAIN: "${LOCAL_DOMAIN}"
RUNTIPI_DOMAIN: "${DOMAIN}"
RUNTIPI_ROOT_DOMAIN: "${ROOT_DOMAIN}"
SZ_USER_UID: "${SZ_USER_UID}"
SZ_USER_GID: "${SZ_USER_GID}"
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
HOST_UID: "${HOST_UID}"
HOST_GID: "${HOST_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
TZ: "${TZ:?Did you forget to define TZ in the root RunTipi .env.local?}"
labels:
traefik.http.routers.dockge.rule: Host(`dockge.${ROOT_DOMAIN}`)${APP_ROUTE_OPTIONAL:-}

View File

@ -2,8 +2,8 @@ services:
dozzle:
hostname: dozzle.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -1,8 +1,8 @@
services:
forgejo:
environment:
USER_UID: "${SZ_USER_UID}"
USER_GID: "${SZ_USER_GID}"
USER_UID: "${HOST_UID}"
USER_GID: "${HOST_GID}"
FORGEJO__server__DOMAIN: "code.${ALT_ROOT_DOMAIN}"
FORGEJO__server__ROOT_URL: "https://code.${ALT_ROOT_DOMAIN}"

View File

@ -1,8 +1,8 @@
services:
homepage:
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"
@ -18,7 +18,7 @@ services:
# Websecure
traefik.http.routers.homepage.middlewares: authentik_sysmgr@file
traefik.http.routers.homepage.rule: Host(`www.${ROOT_DOMAIN}`)${APP_ROUTE_OPTIONAL:-}
# #traefik.http.routers.homepage-more.rule: Host(`www.${LEGACY_ROOT_DOMAIN}`)
# #traefik.http.routers.homepage-more.rule: Host(`www.${ALT_ROOT_DOMAIN}`)
# traefik.http.routers.homepage-more.entrypoints: websecure
# traefik.http.routers.homepage-more.service: homepage
# traefik.http.routers.homepage-more.middlewares: authentik_sysmgr@file

View File

@ -2,8 +2,8 @@ services:
overseerr:
hostname: overseerr.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -1,8 +1,8 @@
services:
plex:
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
network_mode: "container:net-plex"
#networks: []
volumes_from:

View File

@ -2,8 +2,8 @@ services:
prowlarr:
hostname: prowlarr.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -2,8 +2,8 @@ services:
radarr:
hostname: radarr.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -2,8 +2,8 @@ services:
sabnzbd:
hostname: nzb.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -2,8 +2,8 @@ services:
sonarr:
hostname: sonarr.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -2,8 +2,8 @@ services:
syncthing:
hostname: syncthing.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"

View File

@ -2,8 +2,8 @@ services:
tautulli:
hostname: tautulli.docker
environment:
PUID: "${SZ_USER_UID}"
PGID: "${SZ_USER_GID}"
PUID: "${HOST_UID}"
PGID: "${HOST_GID}"
# RUNTIPI Environment
RUNTIPI_APP_PORT: "${APP_PORT}"
RUNTIPI_APP_ID: "${APP_ID}"