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
|
# Database and Radarr configs
|
||||||
CONFIG_PATH=/path/to/config
|
CONFIG_PATH=/path/to/config
|
||||||
# Location of Movie library on disk (See note in Application setup)
|
# 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
|
TVSERIES_PATH=/path/to/movies
|
||||||
# Location of download managers output directory (See note in Application setup)
|
# Location of download managers output directory (See note in Application setup)
|
||||||
DOWNLOADS_PATH=/path/to/downloads
|
#DOWNLOADS_PATH=/path/to/downloads
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
LOG_MAX_SIZE=5m
|
LOG_MAX_SIZE=5m
|
||||||
|
|
|
@ -12,8 +12,10 @@ services:
|
||||||
env_file: .env
|
env_file: .env
|
||||||
volumes:
|
volumes:
|
||||||
- "${CONFIG_PATH}:/config"
|
- "${CONFIG_PATH}:/config"
|
||||||
- "${TVSERIES_PATH}:/tv"
|
# Using same path to fix integration with transmission working on host
|
||||||
- "${DOWNLOADS_PATH}:/downloads"
|
- "${TVSERIES_PATH}:${TVSERIES_PATH}"
|
||||||
|
#- "${TVSERIES_PATH}:/tv"
|
||||||
|
#- "${DOWNLOADS_PATH}:/downloads"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
logging:
|
logging:
|
||||||
driver: "json-file"
|
driver: "json-file"
|
||||||
|
|
Loading…
Reference in a new issue