Simple rsync and SSH Docker image
10K+
rsync is a well-known utility, commonly found on unix systems, for efficently synchronizing files and directories, by checking timestamps, sizes and/or chechsums of files. This works on local files and remote directories, e.g. via ssh, thus serving as a secure file transfer tool.
This simple alpine based image simply contains rsync and the openssh client.
docker run --rm -it -v /tmp/foo:/source:ro -v /tmp/bar:/destiation digitalmobil/rsync -rv /source/ /destiation/
docker run --rm -it -v $HOME/.ssh:/root/.ssh:ro -v /tmp/foo:/source:ro digitalmobil/rsync -rv /source/ user@host:/tmp/foo/
We don't monitor comments on DockerHub. If you have any problems with or questions about this image, please contact us via GitHub issues.
Content type
Image
Digest
Size
5.2 MB
Last updated
over 8 years ago
docker pull digitalmobil/rsync