From a739051dceda989f1c9651069a5ab962e00f1605 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Fri, 16 Apr 2021 00:55:00 +0000 Subject: [PATCH] Workflow update --- lsio/boinc/docker-compose.yaml | 6 ++---- lsio/boinc/docker-run.sh | 3 +-- lsio/calibre/docker-compose.yaml | 8 ++------ lsio/calibre/docker-run.sh | 4 +--- lsio/transmission/docker-compose.yaml | 2 +- lsio/transmission/docker-run.sh | 2 +- 6 files changed, 8 insertions(+), 17 deletions(-) diff --git a/lsio/boinc/docker-compose.yaml b/lsio/boinc/docker-compose.yaml index 8777282..78e5b9a 100644 --- a/lsio/boinc/docker-compose.yaml +++ b/lsio/boinc/docker-compose.yaml @@ -16,10 +16,8 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} - # Username for the BOINC desktop gui. - - GUAC_USER=abc # optional - # Password's md5 hash for the BOINC desktop gui. - - GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 # optional + # Optionally set a password for the gui. + - PASSWORD= # optional volumes: # Where BOINC should store its database and config. - ${BASEDIR:-/volume1/docker}/boinc/config:/config diff --git a/lsio/boinc/docker-run.sh b/lsio/boinc/docker-run.sh index 8bd6ac7..9ec33a6 100644 --- a/lsio/boinc/docker-run.sh +++ b/lsio/boinc/docker-run.sh @@ -9,8 +9,7 @@ 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 GUAC_USER=abc `# optional` `# Username for the BOINC desktop gui.` \ - -e GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 `# optional` `# Password's md5 hash for the BOINC desktop gui.` \ + -e PASSWORD= `# optional` `# Optionally set a password for the gui.` \ -p 8080:8080 `# Boinc desktop gui.` \ -v ${BASEDIR:-/volume1/docker}/boinc/config:/config `# Where BOINC should store its database and config.` \ --device /dev/dri:/dev/dri `# optional` `# Only needed if you want to use your Intel GPU (vaapi).` \ diff --git a/lsio/calibre/docker-compose.yaml b/lsio/calibre/docker-compose.yaml index e7e02cf..570719a 100644 --- a/lsio/calibre/docker-compose.yaml +++ b/lsio/calibre/docker-compose.yaml @@ -16,12 +16,8 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} - # Username for the calibre desktop gui. - - GUAC_USER=abc # optional - # Password's md5 hash for the calibre desktop gui. - - GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 # optional - # for umask setting of Calibre, default if left unset is 022. - - UMASK_SET=022 # optional + # Optionally set a password for the gui. + - PASSWORD= # optional # Optionally pass cli start arguments to calibre. - CLI_ARGS= # optional volumes: diff --git a/lsio/calibre/docker-run.sh b/lsio/calibre/docker-run.sh index 317a863..205a464 100644 --- a/lsio/calibre/docker-run.sh +++ b/lsio/calibre/docker-run.sh @@ -9,9 +9,7 @@ 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 GUAC_USER=abc `# optional` `# Username for the calibre desktop gui.` \ - -e GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 `# optional` `# Password's md5 hash for the calibre desktop gui.` \ - -e UMASK_SET=022 `# optional` `# for umask setting of Calibre, default if left unset is 022.` \ + -e PASSWORD= `# optional` `# Optionally set a password for the gui.` \ -e CLI_ARGS= `# optional` `# Optionally pass cli start arguments to calibre.` \ -p 8080:8080 `# Calibre desktop gui.` \ -p 8081:8081 `# Calibre webserver gui.` \ diff --git a/lsio/transmission/docker-compose.yaml b/lsio/transmission/docker-compose.yaml index 048ad9a..767a03a 100644 --- a/lsio/transmission/docker-compose.yaml +++ b/lsio/transmission/docker-compose.yaml @@ -17,7 +17,7 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} - # Specify an alternative UI options are `/combustion-release/`, `/transmission-web-control/`, and `/kettu/` . + # Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission). - TRANSMISSION_WEB_HOME=/combustion-release/ # optional # Specify an optional username for the interface - USER=username # optional diff --git a/lsio/transmission/docker-run.sh b/lsio/transmission/docker-run.sh index bcf7a44..63e644d 100644 --- a/lsio/transmission/docker-run.sh +++ b/lsio/transmission/docker-run.sh @@ -10,7 +10,7 @@ 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 TRANSMISSION_WEB_HOME=/combustion-release/ `# optional` `# Specify an alternative UI options are `/combustion-release/`, `/transmission-web-control/`, and `/kettu/` .` \ + -e TRANSMISSION_WEB_HOME=/combustion-release/ `# optional` `# Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission).` \ -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.` \