From 1aa71426612ddf034763bc103a242a840af70b51 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Thu, 27 Jul 2023 00:52:41 +0000 Subject: [PATCH] Workflow update --- lsio/flexget/docker-compose.yaml | 4 ++++ lsio/flexget/docker-run.sh | 2 ++ 2 files changed, 6 insertions(+) diff --git a/lsio/flexget/docker-compose.yaml b/lsio/flexget/docker-compose.yaml index 6e87119..ae42a43 100644 --- a/lsio/flexget/docker-compose.yaml +++ b/lsio/flexget/docker-compose.yaml @@ -16,6 +16,10 @@ services: - TZ=${TZ:-Europe/Amsterdam} # Set the FlexGet logging level. - FG_LOG_LEVEL=info + # Set the FlexGet log file location. + - FG_LOG_FILE=/config/flexget.log + # Set the FlexGet config file location. + - FG_CONFIG_FILE=/config/.flexget/config.yml # Set the FlexGet webui password. Pay attention to Bash/YAML reserved characters. - FG_WEBUI_PASSWORD=info # optional volumes: diff --git a/lsio/flexget/docker-run.sh b/lsio/flexget/docker-run.sh index 7379e6e..271519b 100644 --- a/lsio/flexget/docker-run.sh +++ b/lsio/flexget/docker-run.sh @@ -8,6 +8,8 @@ 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 FG_LOG_LEVEL=info `# Set the FlexGet logging level.` \ + -e FG_LOG_FILE=/config/flexget.log `# Set the FlexGet log file location.` \ + -e FG_CONFIG_FILE=/config/.flexget/config.yml `# Set the FlexGet config file location.` \ -e FG_WEBUI_PASSWORD=info `# optional` `# Set the FlexGet webui password. Pay attention to Bash/YAML reserved characters.` \ -p 5050:5050 `# HTTP port for the WebUI.` \ -v ${BASEDIR:-/volume1/docker}/flexget/config:/config `# Local path for FlexGet config files.` \