You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.
Trying to use bg-sync with linuxserver/radarr but I'm unable to use the rsync path (/downloads) in radarr due to permission issues. I've tried correcting this with the UNISON_USER, UNISON_UID, etc variables (setting them the same as the radarr container variables) but every UNISON_GID I specify is always in use (including the default). And when using radarr without rsync I'm able to bind the volume and use it inside radarr so I know I have the right GID/UID.
Trying to use bg-sync with linuxserver/radarr but I'm unable to use the rsync path (/downloads) in radarr due to permission issues. I've tried correcting this with the UNISON_USER, UNISON_UID, etc variables (setting them the same as the radarr container variables) but every UNISON_GID I specify is always in use (including the default). And when using radarr without rsync I'm able to bind the volume and use it inside radarr so I know I have the right GID/UID.
`version: '2'
services:
radarr:
image: linuxserver/radarr
container_name: radarr
environment:
- PUID=501
- PGID=20
- TZ=America/Los_Angeles
volumes:
- ~/.docker/radarr/config:/config
# - /Volumes/downloads/movies:/movies
- /downloads
# - /Volumes/downloads/#recycle:/recycle
ports:
- 10.1.0.3:7878:7878
restart: unless-stopped
bg-sync:
image: cweagans/bg-sync
container_name: bg-sync
volumes:
- /Volumes/downloads/_downloading:/source
volumes_from:
- radarr
environment:
- TZ=America/Los_Angeles
- SYNC_DESTINATION=/downloads
- SYNC_MAX_INOTIFY_WATCHES=40000
- SYNC_VERBOSE=1
- UNISON_USER=server
- UNISON_UID=501
- UNISON_GROUP=staff
- UNISON_GID=20
privileged: true
restart: unless-stopped
networks:
default:
external:
name: bt`
The text was updated successfully, but these errors were encountered: