Added new (untested) configurations for Sonarr, Radarr, Lidarr.
This commit is contained in:
parent
c1af1f3323
commit
c19cba1de8
20
lidarr/.env.dist
Normal file
20
lidarr/.env.dist
Normal file
|
@ -0,0 +1,20 @@
|
|||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=Europe/Moscow
|
||||
|
||||
EXT_PORT=8686
|
||||
|
||||
# control permissions of files and directories created by Radarr
|
||||
UMASK_SET=022
|
||||
|
||||
# Volumes
|
||||
# Database and Radarr configs
|
||||
CONFIG_PATH=/path/to/config
|
||||
# Location of Movie library on disk (See note in Application setup)
|
||||
MUSIC_PATH=/path/to/movies
|
||||
# Location of download managers output directory (See note in Application setup)
|
||||
DOWNLOADS_PATH=/path/to/downloads
|
||||
|
||||
# Logs
|
||||
LOG_MAX_SIZE=5m
|
||||
LOG_MAX_FILE=5
|
21
lidarr/docker-compose.yml
Normal file
21
lidarr/docker-compose.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
lidarr:
|
||||
# https://hub.docker.com/r/linuxserver/lidarr
|
||||
image: linuxserver/lidarr:latest
|
||||
container_name: lidarr
|
||||
#network_mode: "host"
|
||||
ports:
|
||||
- "${EXT_PORT}:8686/tcp"
|
||||
env_file: .env
|
||||
volumes:
|
||||
- "${CONFIG_PATH}:/config"
|
||||
- "${MUSIC_PATH}:/music"
|
||||
- "${DOWNLOADS_PATH}:/downloads"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "${LOG_MAX_SIZE:-5m}"
|
||||
max-file: "${LOG_MAX_FILE:-5}"
|
20
radarr/.env.dist
Normal file
20
radarr/.env.dist
Normal file
|
@ -0,0 +1,20 @@
|
|||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=Europe/Moscow
|
||||
|
||||
EXT_PORT=7878
|
||||
|
||||
# control permissions of files and directories created by Radarr
|
||||
UMASK_SET=022
|
||||
|
||||
# Volumes
|
||||
# Database and Radarr configs
|
||||
CONFIG_PATH=/path/to/config
|
||||
# Location of Movie library on disk (See note in Application setup)
|
||||
MOVIES_PATH=/path/to/movies
|
||||
# Location of download managers output directory (See note in Application setup)
|
||||
DOWNLOADS_PATH=/path/to/downloads
|
||||
|
||||
# Logs
|
||||
LOG_MAX_SIZE=5m
|
||||
LOG_MAX_FILE=5
|
21
radarr/docker-compose.yml
Normal file
21
radarr/docker-compose.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
radarr:
|
||||
# https://hub.docker.com/r/linuxserver/radarr
|
||||
image: linuxserver/radarr:latest
|
||||
container_name: radarr
|
||||
#network_mode: "host"
|
||||
ports:
|
||||
- "${EXT_PORT}:7878/tcp"
|
||||
env_file: .env
|
||||
volumes:
|
||||
- "${CONFIG_PATH}:/config"
|
||||
- "${MOVIES_PATH}:/movies"
|
||||
- "${DOWNLOADS_PATH}:/downloads"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "${LOG_MAX_SIZE:-5m}"
|
||||
max-file: "${LOG_MAX_FILE:-5}"
|
20
sonarr/.env.dist
Normal file
20
sonarr/.env.dist
Normal file
|
@ -0,0 +1,20 @@
|
|||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=Europe/Moscow
|
||||
|
||||
EXT_PORT=8989
|
||||
|
||||
# control permissions of files and directories created by Radarr
|
||||
UMASK_SET=022
|
||||
|
||||
# Volumes
|
||||
# Database and Radarr configs
|
||||
CONFIG_PATH=/path/to/config
|
||||
# Location of Movie library on disk (See note in Application setup)
|
||||
TVSERIES_PATH=/path/to/movies
|
||||
# Location of download managers output directory (See note in Application setup)
|
||||
DOWNLOADS_PATH=/path/to/downloads
|
||||
|
||||
# Logs
|
||||
LOG_MAX_SIZE=5m
|
||||
LOG_MAX_FILE=5
|
21
sonarr/docker-compose.yml
Normal file
21
sonarr/docker-compose.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
sonarr:
|
||||
# https://hub.docker.com/r/linuxserver/sonarr
|
||||
image: linuxserver/sonarr:latest
|
||||
container_name: sonarr
|
||||
#network_mode: "host"
|
||||
ports:
|
||||
- "${EXT_PORT}:8989/tcp"
|
||||
env_file: .env
|
||||
volumes:
|
||||
- "${CONFIG_PATH}:/config"
|
||||
- "${TVSERIES_PATH}:/tv"
|
||||
- "${DOWNLOADS_PATH}:/downloads"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "${LOG_MAX_SIZE:-5m}"
|
||||
max-file: "${LOG_MAX_FILE:-5}"
|
Loading…
Reference in a new issue