diff --git a/lsio/doplarr/docker-compose.yaml b/lsio/doplarr/docker-compose.yaml index fc88076..7d0a44c 100644 --- a/lsio/doplarr/docker-compose.yaml +++ b/lsio/doplarr/docker-compose.yaml @@ -38,7 +38,11 @@ services: - SONARR__QUALITY_PROFILE= # optional # The name of the quality profile to use by default for Radarr - RADARR__QUALITY_PROFILE= # optional - # The name of the language profile to use by default for Radarr + # The root folder to use by default for Sonarr + - SONARR__ROOTFOLDER= # optional + # The root folder to use by default for Radarr + - RADARR__ROOTFOLDER= # optional + # The name of the language profile to use by default for Sonarr - SONARR__LANGUAGE_PROFILE= # optional # The Overseerr user id to use by default if there is no associated discord account for the requester - OVERSEERR__DEFAULT_ID= # optional diff --git a/lsio/doplarr/docker-run.sh b/lsio/doplarr/docker-run.sh index dec6dd0..49a08ea 100644 --- a/lsio/doplarr/docker-run.sh +++ b/lsio/doplarr/docker-run.sh @@ -19,7 +19,9 @@ docker run -d \ -e DISCORD__REQUESTED_MSG_STYLE=:plain `# optional` `# Sets the style of the request alert message. One of `:plain` `:embed` `:none`` \ -e SONARR__QUALITY_PROFILE= `# optional` `# The name of the quality profile to use by default for Sonarr` \ -e RADARR__QUALITY_PROFILE= `# optional` `# The name of the quality profile to use by default for Radarr` \ - -e SONARR__LANGUAGE_PROFILE= `# optional` `# The name of the language profile to use by default for Radarr` \ + -e SONARR__ROOTFOLDER= `# optional` `# The root folder to use by default for Sonarr` \ + -e RADARR__ROOTFOLDER= `# optional` `# The root folder to use by default for Radarr` \ + -e SONARR__LANGUAGE_PROFILE= `# optional` `# The name of the language profile to use by default for Sonarr` \ -e OVERSEERR__DEFAULT_ID= `# optional` `# The Overseerr user id to use by default if there is no associated discord account for the requester` \ -e PARTIAL_SEASONS=true `# optional` `# Sets whether users can request partial seasons.` \ -e LOG_LEVEL=:info `# optional` `# The log level for the logging backend. This can be changed for debugging purposes. One of trace `:debug` `:info` `:warn` `:error` `:fatal` `:report`` \