Playing with sonarr config to fix transmission-on-host issue with paths.
This commit is contained in:
parent
7132e345cf
commit
356f52e560
|
@ -11,9 +11,10 @@ UMASK_SET=022
|
|||
# Database and Radarr configs
|
||||
CONFIG_PATH=/path/to/config
|
||||
# Location of Movie library on disk (See note in Application setup)
|
||||
# It's recommended to use such path that includes download path too.
|
||||
TVSERIES_PATH=/path/to/movies
|
||||
# Location of download managers output directory (See note in Application setup)
|
||||
DOWNLOADS_PATH=/path/to/downloads
|
||||
#DOWNLOADS_PATH=/path/to/downloads
|
||||
|
||||
# Logs
|
||||
LOG_MAX_SIZE=5m
|
||||
|
|
|
@ -12,8 +12,10 @@ services:
|
|||
env_file: .env
|
||||
volumes:
|
||||
- "${CONFIG_PATH}:/config"
|
||||
- "${TVSERIES_PATH}:/tv"
|
||||
- "${DOWNLOADS_PATH}:/downloads"
|
||||
# Using same path to fix integration with transmission working on host
|
||||
- "${TVSERIES_PATH}:${TVSERIES_PATH}"
|
||||
#- "${TVSERIES_PATH}:/tv"
|
||||
#- "${DOWNLOADS_PATH}:/downloads"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: "json-file"
|
||||
|
|
Loading…
Reference in a new issue