You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	rsyncd
rsync is an open source utility that provides fast incremental file transfer. rsyncd is rsync in daemon mode.
docker-compose.yml
rsyncd:
  image: vimagick/rsyncd
  ports:
    - "873:873"
  volumes:
#   - ./rsyncd.conf:/etc/rsyncd.conf
    - ./share:/share
  restart: always
You can mount
rsyncd.confto override the default one.
rsyncd.conf (default)
[global]
charset = utf-8
max connections = 8
reverse lookup = no
[share]
path = /share
read only = yes
#hosts allow = 192.168.0.0/16
#auth users = *
#secrets file = /etc/rsyncd.secrets
#strict modes = false
server
docker-compose up -d
client
rsync -avz easypi.info::share /path/to/folder