diff --git a/lsio/digikam/docker-compose.yaml b/lsio/digikam/docker-compose.yaml index b7d5fe4..a4387b1 100644 --- a/lsio/digikam/docker-compose.yaml +++ b/lsio/digikam/docker-compose.yaml @@ -15,6 +15,10 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} + # Specify a subfolder to use with reverse proxies, IE `/subfolder/` + - SUBFOLDER=/ # optional + # See the keyboard layouts section for more information and options. + - KEYBOARD=en-us-qwerty # optional volumes: # Users home directory in the container, stores database. - ${BASEDIR:-/volume1/docker}/digikam/config:/config diff --git a/lsio/digikam/docker-run.sh b/lsio/digikam/docker-run.sh index 7247bd9..1e2f3a9 100644 --- a/lsio/digikam/docker-run.sh +++ b/lsio/digikam/docker-run.sh @@ -8,6 +8,8 @@ docker run -d \ -e PUID=${PUID:-1024} `# for GroupID` \ -e PGID=${PGID:-100} `# for UserID` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ + -e SUBFOLDER=/ `# optional` `# Specify a subfolder to use with reverse proxies, IE `/subfolder/`` \ + -e KEYBOARD=en-us-qwerty `# optional` `# See the keyboard layouts section for more information and options.` \ -p 3000:3000 `# optional` `# digiKam desktop gui` \ -v ${BASEDIR:-/volume1/docker}/digikam/config:/config `# Users home directory in the container, stores database.` \ --restart unless-stopped \ diff --git a/lsio/nzbget/docker-compose.yaml b/lsio/nzbget/docker-compose.yaml index df77cbf..fd3e4e7 100644 --- a/lsio/nzbget/docker-compose.yaml +++ b/lsio/nzbget/docker-compose.yaml @@ -15,8 +15,10 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} - # Supported values are LATEST, PLEXPASS or a specific version number. - - VERSION=latest # optional + # Specify the user for web authentication. + - NZBGET_USER=nzbget # optional + # Specify the password for web authentication. + - NZBGET_PASS=tegbzn6789 # optional volumes: # NZBGet App data. - ${BASEDIR:-/volume1/docker}/nzbget/config:/config diff --git a/lsio/nzbget/docker-run.sh b/lsio/nzbget/docker-run.sh index 5f6ccc1..720fc80 100644 --- a/lsio/nzbget/docker-run.sh +++ b/lsio/nzbget/docker-run.sh @@ -8,7 +8,8 @@ docker run -d \ -e PUID=${PUID:-1024} `# for GroupID` \ -e PGID=${PGID:-100} `# for UserID` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ - -e VERSION=latest `# optional` `# Supported values are LATEST, PLEXPASS or a specific version number.` \ + -e NZBGET_USER=nzbget `# optional` `# Specify the user for web authentication.` \ + -e NZBGET_PASS=tegbzn6789 `# optional` `# Specify the password for web authentication.` \ -p 6789:6789 `# WebUI` \ -v ${BASEDIR:-/volume1/docker}/nzbget/config:/config `# NZBGet App data.` \ -v ${BASEDIR:-/volume1/docker}/nzbget/downloads:/downloads `# optional` `# Location of downloads on disk.` \ diff --git a/lsio/transmission/docker-compose.yaml b/lsio/transmission/docker-compose.yaml index b76360c..f451c94 100644 --- a/lsio/transmission/docker-compose.yaml +++ b/lsio/transmission/docker-compose.yaml @@ -25,6 +25,8 @@ services: - PASS=password # optional # Specify an optional list of comma separated ip whitelist. Fill rpc-whitelist setting. - WHITELIST=iplist # optional + # Specify an optional port for torrent TCP/UDP connections. Fill peer-port setting. + - PEERPORT=peerport # optional # Specify an optional list of comma separated dns name whitelist. Fill rpc-host-whitelist setting. - HOST_WHITELIST=dnsnane list # optional volumes: diff --git a/lsio/transmission/docker-run.sh b/lsio/transmission/docker-run.sh index 622c704..ceea7b7 100644 --- a/lsio/transmission/docker-run.sh +++ b/lsio/transmission/docker-run.sh @@ -14,6 +14,7 @@ docker run -d \ -e USER=username `# optional` `# Specify an optional username for the interface` \ -e PASS=password `# optional` `# Specify an optional password for the interface` \ -e WHITELIST=iplist `# optional` `# Specify an optional list of comma separated ip whitelist. Fill rpc-whitelist setting.` \ + -e PEERPORT=peerport `# optional` `# Specify an optional port for torrent TCP/UDP connections. Fill peer-port setting.` \ -e HOST_WHITELIST=dnsnane list `# optional` `# Specify an optional list of comma separated dns name whitelist. Fill rpc-host-whitelist setting.` \ -p 9091:9091 `# WebUI` \ -p 51413:51413 `# Torrent Port TCP` \