2022-01-31 00:34:45 +00:00
|
|
|
# [Doplarr](https://github.com/kiranshila/Doplarr) is an *arr request bot for
|
|
|
|
# Discord.'
|
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
doplarr:
|
|
|
|
image: ghcr.io/linuxserver/doplarr
|
|
|
|
container_name: doplarr
|
|
|
|
environment:
|
|
|
|
# for UserID
|
2022-04-02 00:45:58 +00:00
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for GroupID
|
2022-01-31 00:34:45 +00:00
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
|
|
# Specify your discord bot token.
|
|
|
|
- DISCORD__TOKEN=<discord__token>
|
|
|
|
# Specify your Overseerr API key. Leave blank if using Radarr/Sonarr.
|
2022-02-01 00:36:41 +00:00
|
|
|
- OVERSEERR__API=<overseerr__api>
|
2022-01-31 00:34:45 +00:00
|
|
|
# Specify your Overseerr URL. Leave blank if using Radarr/Sonarr.
|
|
|
|
- OVERSEERR__URL=http://localhost:5055
|
|
|
|
# Specify your Radarr API key. Leave blank if using Overseerr.
|
2022-02-01 00:36:41 +00:00
|
|
|
- RADARR__API=<radarr__api>
|
2022-01-31 00:34:45 +00:00
|
|
|
# Specify your Radarr URL. Leave blank if using Overseerr.
|
|
|
|
- RADARR__URL=http://localhost:7878
|
|
|
|
# Specify your Sonarr API key. Leave blank if using Overseerr.
|
2022-02-01 00:36:41 +00:00
|
|
|
- SONARR__API=<sonarr__api>
|
2022-01-31 00:34:45 +00:00
|
|
|
# Specify your Sonarr URL. Leave blank if using Overseerr.
|
|
|
|
- SONARR__URL=http://localhost:8989
|
|
|
|
# Sets the maximum size of the search results selection
|
|
|
|
- DISCORD__MAX_RESULTS=25 # optional
|
|
|
|
# Sets the style of the request alert message. One of `:plain` `:embed` `:none`
|
|
|
|
- DISCORD__REQUESTED_MSG_STYLE=:plain # optional
|
|
|
|
# The name of the quality profile to use by default for Sonarr
|
2022-02-01 00:36:41 +00:00
|
|
|
- SONARR__QUALITY_PROFILE=<not_set_by_default> # optional
|
2022-01-31 00:34:45 +00:00
|
|
|
# The name of the quality profile to use by default for Radarr
|
2022-02-01 00:36:41 +00:00
|
|
|
- RADARR__QUALITY_PROFILE=<not_set_by_default> # optional
|
2022-04-27 01:01:36 +00:00
|
|
|
# The root folder to use by default for Sonarr
|
|
|
|
- SONARR__ROOTFOLDER=<not_set_by_default> # optional
|
|
|
|
# The root folder to use by default for Radarr
|
|
|
|
- RADARR__ROOTFOLDER=<not_set_by_default> # optional
|
|
|
|
# The name of the language profile to use by default for Sonarr
|
2022-02-01 00:36:41 +00:00
|
|
|
- SONARR__LANGUAGE_PROFILE=<not_set_by_default> # optional
|
2022-01-31 00:34:45 +00:00
|
|
|
# The Overseerr user id to use by default if there is no associated discord account for the requester
|
2022-02-01 00:36:41 +00:00
|
|
|
- OVERSEERR__DEFAULT_ID=<not_set_by_default> # optional
|
2022-01-31 00:34:45 +00:00
|
|
|
# Sets whether users can request partial seasons.
|
|
|
|
- PARTIAL_SEASONS=true # optional
|
|
|
|
# The log level for the logging backend. This can be changed for debugging purposes. One of trace `:debug` `:info` `:warn` `:error` `:fatal` `:report`
|
|
|
|
- LOG_LEVEL=:info # optional
|
|
|
|
# For passing additional java options.
|
2022-02-01 00:36:41 +00:00
|
|
|
- JAVA_OPTS=<not_set_by_default> # optional
|
2022-01-31 00:34:45 +00:00
|
|
|
volumes:
|
|
|
|
# Contains all relevant configuration files.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/doplarr/config:/config
|
|
|
|
restart: unless-stopped
|