diff --git a/lsio/bookstack/docker-run.sh b/lsio/bookstack/docker-run.sh index cc59cf0..fa405bb 100644 --- a/lsio/bookstack/docker-run.sh +++ b/lsio/bookstack/docker-run.sh @@ -20,6 +20,6 @@ docker run -d \ -e DB_DATABASE=bookstackapp `# for specifying the database to be used` \ -e QUEUE_CONNECTION= `# optional` `# Set to `database` to enable async actions like sending email or triggering webhooks. See [documentation](https://www.bookstackapp.com/docs/admin/email-webhooks/#async-action-handling).` \ -p 6875:80 `# will map the container's port 80 to port 6875 on the host` \ - -v ${BASEDIR:-/volume1/docker}/bookstack/config:/config `# this will store any uploaded data on the docker host` \ + -v ${BASEDIR:-/volume1/docker}/bookstack/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/bookstack diff --git a/lsio/changedetection.io/docker-run.sh b/lsio/changedetection.io/docker-run.sh index b6a12c6..f89a88b 100644 --- a/lsio/changedetection.io/docker-run.sh +++ b/lsio/changedetection.io/docker-run.sh @@ -9,6 +9,6 @@ docker run -d \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -e BASE_URL= `# optional` `# Specify the full URL (including protocol) when running behind a reverse proxy` \ -p 5000:5000 `# WebUI` \ - -v ${BASEDIR:-/volume1/docker}/changedetection.io/config:/config `# Contains all relevant configuration files.` \ + -v ${BASEDIR:-/volume1/docker}/changedetection.io/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/changedetection.io diff --git a/lsio/feed2toot/docker-compose.yaml b/lsio/feed2toot/docker-compose.yaml index dc1cc3b..e1958d7 100644 --- a/lsio/feed2toot/docker-compose.yaml +++ b/lsio/feed2toot/docker-compose.yaml @@ -17,6 +17,6 @@ services: # Limit number of RSS entries published at each execution. - FEED_LIMIT=5 # optional volumes: - # Local path for feed2toot config files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/feed2toot/config:/config restart: unless-stopped diff --git a/lsio/feed2toot/docker-run.sh b/lsio/feed2toot/docker-run.sh index 8dd6d4a..2ca4130 100644 --- a/lsio/feed2toot/docker-run.sh +++ b/lsio/feed2toot/docker-run.sh @@ -8,6 +8,6 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -e FEED_LIMIT=5 `# optional` `# Limit number of RSS entries published at each execution.` \ - -v ${BASEDIR:-/volume1/docker}/feed2toot/config:/config `# Local path for feed2toot config files.` \ + -v ${BASEDIR:-/volume1/docker}/feed2toot/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/feed2toot diff --git a/lsio/healthchecks/docker-compose.yaml b/lsio/healthchecks/docker-compose.yaml index ba34301..60b10ab 100644 --- a/lsio/healthchecks/docker-compose.yaml +++ b/lsio/healthchecks/docker-compose.yaml @@ -52,7 +52,7 @@ services: # Full URL to custom site logo - SITE_LOGO_URL= # optional volumes: - # Database and healthchecks config directory + # Persistent config files - ${BASEDIR:-/volume1/docker}/healthchecks/config:/config ports: # Healthchecks Web UI diff --git a/lsio/healthchecks/docker-run.sh b/lsio/healthchecks/docker-run.sh index 998a048..9a315cd 100644 --- a/lsio/healthchecks/docker-run.sh +++ b/lsio/healthchecks/docker-run.sh @@ -28,6 +28,6 @@ docker run -d \ -e SITE_LOGO_URL= `# optional` `# Full URL to custom site logo` \ -p 8000:8000 `# Healthchecks Web UI` \ -p 2525:2525 `# optional` `# Port for inbound SMTP pings` \ - -v ${BASEDIR:-/volume1/docker}/healthchecks/config:/config `# Database and healthchecks config directory` \ + -v ${BASEDIR:-/volume1/docker}/healthchecks/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/healthchecks diff --git a/lsio/phpmyadmin/docker-compose.yaml b/lsio/phpmyadmin/docker-compose.yaml index db33948..e63a707 100644 --- a/lsio/phpmyadmin/docker-compose.yaml +++ b/lsio/phpmyadmin/docker-compose.yaml @@ -20,7 +20,7 @@ services: # Set the URL you will use to access the web frontend - PMA_ABSOLUTE_URI=https://phpmyadmin.example.com # optional volumes: - # Contains all relevant configuration files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/phpmyadmin/config:/config ports: # Port for web frontend diff --git a/lsio/phpmyadmin/docker-run.sh b/lsio/phpmyadmin/docker-run.sh index 2d7dfd5..c8e7f45 100644 --- a/lsio/phpmyadmin/docker-run.sh +++ b/lsio/phpmyadmin/docker-run.sh @@ -11,6 +11,6 @@ docker run -d \ -e PMA_ARBITRARY=1 `# optional` `# Set to `1` to allow you to connect to any server. Setting to `0` will only allow you to connect to specified hosts (See Application Setup)` \ -e PMA_ABSOLUTE_URI=https://phpmyadmin.example.com `# optional` `# Set the URL you will use to access the web frontend` \ -p 80:80 `# Port for web frontend` \ - -v ${BASEDIR:-/volume1/docker}/phpmyadmin/config:/config `# Contains all relevant configuration files.` \ + -v ${BASEDIR:-/volume1/docker}/phpmyadmin/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/phpmyadmin diff --git a/lsio/plex-meta-manager/docker-compose.yaml b/lsio/plex-meta-manager/docker-compose.yaml index 009378d..4b4ddb1 100644 --- a/lsio/plex-meta-manager/docker-compose.yaml +++ b/lsio/plex-meta-manager/docker-compose.yaml @@ -28,6 +28,6 @@ services: # Set to `True` to run without any of the missing movie/show functions. - PMM_NO_MISSING=False # optional volumes: - # Local path for plex-meta-manager config files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/plex-meta-manager/config:/config restart: unless-stopped diff --git a/lsio/plex-meta-manager/docker-run.sh b/lsio/plex-meta-manager/docker-run.sh index 03bd9c4..5daac5d 100644 --- a/lsio/plex-meta-manager/docker-run.sh +++ b/lsio/plex-meta-manager/docker-run.sh @@ -15,6 +15,6 @@ docker run -d \ -e PMM_RUN=False `# optional` `# Set to `True` to run without the scheduler.` \ -e PMM_TEST=False `# optional` `# Set to `True` to run in debug mode with only collections that have `test: true`.` \ -e PMM_NO_MISSING=False `# optional` `# Set to `True` to run without any of the missing movie/show functions.` \ - -v ${BASEDIR:-/volume1/docker}/plex-meta-manager/config:/config `# Local path for plex-meta-manager config files.` \ + -v ${BASEDIR:-/volume1/docker}/plex-meta-manager/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/plex-meta-manager diff --git a/lsio/sabnzbd/docker-compose.yaml b/lsio/sabnzbd/docker-compose.yaml index 2809acb..236dfd9 100644 --- a/lsio/sabnzbd/docker-compose.yaml +++ b/lsio/sabnzbd/docker-compose.yaml @@ -17,7 +17,7 @@ services: # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} volumes: - # Local path for sabnzbd config files. + # Persistent config files - ${BASEDIR:-/volume1/docker}/sabnzbd/config:/config # Local path for finished downloads. - ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads # optional diff --git a/lsio/sabnzbd/docker-run.sh b/lsio/sabnzbd/docker-run.sh index c9cd2d5..be4ea03 100644 --- a/lsio/sabnzbd/docker-run.sh +++ b/lsio/sabnzbd/docker-run.sh @@ -10,7 +10,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -p 8080:8080 `# HTTP port for the WebUI.` \ - -v ${BASEDIR:-/volume1/docker}/sabnzbd/config:/config `# Local path for sabnzbd config files.` \ + -v ${BASEDIR:-/volume1/docker}/sabnzbd/config:/config `# Persistent config files` \ -v ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads `# optional` `# Local path for finished downloads.` \ -v ${BASEDIR:-/volume1/docker}/sabnzbd/incomplete-downloads:/incomplete-downloads `# optional` `# Local path for incomplete-downloads.` \ --restart unless-stopped \ diff --git a/lsio/smokeping/docker-compose.yaml b/lsio/smokeping/docker-compose.yaml index 7904795..ce05ee8 100644 --- a/lsio/smokeping/docker-compose.yaml +++ b/lsio/smokeping/docker-compose.yaml @@ -16,7 +16,7 @@ services: # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} volumes: - # Configure the `Targets` file here + # Persistent config files - ${BASEDIR:-/volume1/docker}/smokeping/config:/config # Storage location for db and application data (graphs etc) - ${BASEDIR:-/volume1/docker}/smokeping/data:/data diff --git a/lsio/smokeping/docker-run.sh b/lsio/smokeping/docker-run.sh index 0076d62..ac17a15 100644 --- a/lsio/smokeping/docker-run.sh +++ b/lsio/smokeping/docker-run.sh @@ -9,7 +9,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -p 80:80 `# Allows HTTP access to the internal webserver.` \ - -v ${BASEDIR:-/volume1/docker}/smokeping/config:/config `# Configure the `Targets` file here` \ + -v ${BASEDIR:-/volume1/docker}/smokeping/config:/config `# Persistent config files` \ -v ${BASEDIR:-/volume1/docker}/smokeping/data:/data `# Storage location for db and application data (graphs etc)` \ --restart unless-stopped \ ghcr.io/linuxserver/smokeping diff --git a/lsio/tautulli/docker-compose.yaml b/lsio/tautulli/docker-compose.yaml index 7d1ef5d..7b84e4f 100644 --- a/lsio/tautulli/docker-compose.yaml +++ b/lsio/tautulli/docker-compose.yaml @@ -15,7 +15,7 @@ services: # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} volumes: - # Contains tautulli config and database. + # Persistent config files - ${BASEDIR:-/volume1/docker}/tautulli/config:/config ports: # WebUI diff --git a/lsio/tautulli/docker-run.sh b/lsio/tautulli/docker-run.sh index 8b1617f..b712926 100644 --- a/lsio/tautulli/docker-run.sh +++ b/lsio/tautulli/docker-run.sh @@ -8,6 +8,6 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -p 8181:8181 `# WebUI` \ - -v ${BASEDIR:-/volume1/docker}/tautulli/config:/config `# Contains tautulli config and database.` \ + -v ${BASEDIR:-/volume1/docker}/tautulli/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/tautulli diff --git a/lsio/xbackbone/docker-compose.yaml b/lsio/xbackbone/docker-compose.yaml index 6a5ae27..aef7bb6 100644 --- a/lsio/xbackbone/docker-compose.yaml +++ b/lsio/xbackbone/docker-compose.yaml @@ -18,7 +18,7 @@ services: # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} volumes: - # config directory volume mapping + # Persistent config files - ${BASEDIR:-/volume1/docker}/xbackbone/config:/config ports: # http gui diff --git a/lsio/xbackbone/docker-run.sh b/lsio/xbackbone/docker-run.sh index 7565cfa..77671b7 100644 --- a/lsio/xbackbone/docker-run.sh +++ b/lsio/xbackbone/docker-run.sh @@ -12,6 +12,6 @@ docker run -d \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -p 80:80 `# http gui` \ -p 443:443 `# https gui` \ - -v ${BASEDIR:-/volume1/docker}/xbackbone/config:/config `# config directory volume mapping` \ + -v ${BASEDIR:-/volume1/docker}/xbackbone/config:/config `# Persistent config files` \ --restart unless-stopped \ ghcr.io/linuxserver/xbackbone