docker-bg-sync icon indicating copy to clipboard operation
docker-bg-sync copied to clipboard

A container that syncs files between two configurable directories.

Results 16 docker-bg-sync issues
Sort by recently updated
recently updated
newest added

Hi, this is my docker-composer service: ``` files_syncer: build: context: services/files_syncer args: - USER_ID=${USER_ID} volumes: - "./:/source:cached" - "code:/code" - "files_syncer_root:/root" environment: - SYNC_DESTINATION=/code - UNISON_USER=app - UNISON_UID=${USER_ID} - UNISON_GROUP=app...

I assumed it could, but it only syncs to the first service specified in the `volumes_from` list. Plus: my containers won't share the same mount: with `docker inspect` shows that...

The sync works nicely the first time, but after doing changes, I can see the updates in /source but no in the destination folder. I think I'm having the same...

In case you didn't know, docker-for-mac has got a very much needed flag which makes this container not as needed, thankfully. :cached is implemented now and :delegated I think will...

Any documentation or pointers on this would be appreciated.

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

Same [`docker-compose.yml`](https://gist.github.com/leymannx/277095bcc750300e749d5ae185181b74) as in the README only added `SYNC_PREFER=newer`. Adding files are synced just fine in both directions. Removing files in contrast is synced in only one direction host ->...

# Problem Ignoring git folder from syncing is wrong as many application may rely on git info like commit hash for versioning and stuff. # Solution Remove line: https://github.com/cweagans/docker-bg-sync/blob/master/sync.sh#L159 #...

Hi! First of all thanks a lot for your work! Working with this image I found an error, when you use the env variables: UNISON_USER, UNISON_GROUP, UNISON_GID, UNISON_UID. The container...