Workflow update

main
technorabilia 2 years ago
parent fefc0270b5
commit 5b0946463b

@ -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

@ -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 \

@ -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

@ -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.` \

@ -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:

@ -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` \

Loading…
Cancel
Save