Sign inSign up

dinamic/rsync-static

By dinamic

Updated about 8 years ago

Minimalistic rsync container, useful for one-way sync of folders.

Image
0

371

dinamic/rsync-static repository overview

Rsync

Here's an example on how to sync the content of a certain folder to a docker volume:

version: '3.6'
services:
  rsync:
    image: dinamic/rsync-static
    entrypoint:
      /rsync -rtRlv /source /destination
    volumes:
      - "sourceCode:/destination"
      - "/path/to/src:/source"
    privileged: true
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 524288
        hard: 524288
volumes:
  sourceCode:

Tag summary

Content type

Image

Digest

Size

1 MB

Last updated

about 8 years ago

docker pull dinamic/rsync-static