Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/j3k0/docker_rsync_client
Rsync client dockerized
https://github.com/j3k0/docker_rsync_client
Last synced: 24 days ago
JSON representation
Rsync client dockerized
- Host: GitHub
- URL: https://github.com/j3k0/docker_rsync_client
- Owner: j3k0
- Created: 2015-07-16T13:33:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-16T13:41:29.000Z (over 9 years ago)
- Last Synced: 2024-10-16T11:16:10.886Z (2 months ago)
- Size: 113 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rsync-client docker image
Pull:
docker pull jeko/rsync-client
Use to synchronize some local directories:
docker run --rm -v /dir1:/dir1 -v /dir2:/dir2 jeko/rsync-client -av /dir1/ /dir2
Use to backup a container volume:
docker run --rm --volumes-from volume-container -v /dir2:/dir2 jeko/rsync-client -av /path/to/volume /dir2/
Or use it any ways you like to use rsync.