Sign inSign up

2shell/docker-rsync

By 2shell

Updated almost 7 years ago

Simple dockerized rsync + OpenSSH

Image
0

1.1K

2shell/docker-rsync repository overview

rsync Docker image

What is this?

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.

How to use this image

Simple synchronization of local directories
docker run --rm -it -v /tmp/foo:/source:ro -v /tmp/bar:/destiation 2shell/rsync -rv /source/ /destiation/
Filetransfer via SSH
docker run --rm -it -v $HOME/.ssh:/root/.ssh:ro -v /tmp/foo:/source:ro 2shell/rsync -rv /source/ user@host:/tmp/foo/

Tag summary

Content type

Image

Digest

Size

3.7 MB

Last updated

almost 7 years ago

docker pull 2shell/docker-rsync