Playing with sonarr config to fix transmission-on-host issue with paths.

This commit is contained in:
Alexey Skobkin 2020-03-31 20:37:10 +03:00
parent 7132e345cf
commit 356f52e560
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
2 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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"