From 816c859cbc56f2e064298f501926f318de6803c9 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Wed, 14 Feb 2024 01:16:57 +0000 Subject: [PATCH] Workflow update --- lsio/firefox/docker-compose.yaml | 2 ++ lsio/firefox/docker-run.sh | 1 + lsio/sickchill/docker-compose.yaml | 2 +- lsio/sickchill/docker-run.sh | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lsio/firefox/docker-compose.yaml b/lsio/firefox/docker-compose.yaml index b55201d..998cf7c 100644 --- a/lsio/firefox/docker-compose.yaml +++ b/lsio/firefox/docker-compose.yaml @@ -17,6 +17,8 @@ services: - PGID=${PGID:-100} # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} + # Specify one or multiple Firefox CLI flags, this string will be passed to the application in full. + - FIREFOX_CLI=https://www.linuxserver.io/ # optional volumes: # Users home directory in the container, stores local files and settings - ${BASEDIR:-/volume1/docker}/firefox/config:/config diff --git a/lsio/firefox/docker-run.sh b/lsio/firefox/docker-run.sh index 44c1ae5..c0b8610 100644 --- a/lsio/firefox/docker-run.sh +++ b/lsio/firefox/docker-run.sh @@ -10,6 +10,7 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -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 FIREFOX_CLI=https://www.linuxserver.io/ `# optional` `# Specify one or multiple Firefox CLI flags, this string will be passed to the application in full.` \ -p 3000:3000 `# Firefox desktop gui.` \ -p 3001:3001 `# Firefox desktop gui HTTPS.` \ -v ${BASEDIR:-/volume1/docker}/firefox/config:/config `# Users home directory in the container, stores local files and settings` \ diff --git a/lsio/sickchill/docker-compose.yaml b/lsio/sickchill/docker-compose.yaml index b7284da..2dc3a70 100644 --- a/lsio/sickchill/docker-compose.yaml +++ b/lsio/sickchill/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: - # this will store config on the docker host + # Persistent config files - ${BASEDIR:-/volume1/docker}/sickchill/config:/config # this will store any downloaded data on the docker host - ${BASEDIR:-/volume1/docker}/sickchill/downloads:/downloads diff --git a/lsio/sickchill/docker-run.sh b/lsio/sickchill/docker-run.sh index b100b64..9aca312 100644 --- a/lsio/sickchill/docker-run.sh +++ b/lsio/sickchill/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 8081:8081 `# will map the container's port 8081 to port 8081 on the host` \ - -v ${BASEDIR:-/volume1/docker}/sickchill/config:/config `# this will store config on the docker host` \ + -v ${BASEDIR:-/volume1/docker}/sickchill/config:/config `# Persistent config files` \ -v ${BASEDIR:-/volume1/docker}/sickchill/downloads:/downloads `# this will store any downloaded data on the docker host` \ -v ${BASEDIR:-/volume1/docker}/sickchill/tv:/tv `# this will allow sickchill to view what you already have` \ --restart unless-stopped \