Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

permission issue #26

Open
glc650 opened this issue Jun 18, 2019 · 0 comments
Open

permission issue #26

glc650 opened this issue Jun 18, 2019 · 0 comments

Comments

@glc650
Copy link

glc650 commented Jun 18, 2019

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`

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant