Sign inSign up

brimstone/unison

By brimstone

Updated over 8 years ago

Synchronized data-only containers using unison

Image
1

459

brimstone/unison repository overview

unison

Sync volumes between multiple docker hosts.

Use with something like:

version: "3"

services:
  unison:
    image: brimstone/unison
    networks:
    - unison
    volumes:
    - home:/home
    environment:
    - DIR=/home
    - SERVICE=unison
    deploy:
      mode: global
      resources:
        limits:
          memory: 50M
        reservations:
          memory: 10M

volumes:
  home:

networks:
  unison:
    driver: overlay
    driver_opts:
      encrypted: "true"

Where:

  • SERVICE is the name of the service
  • DIR is the directory to keep in sync

Tag summary

Content type

Image

Digest

sha256:7092825bf

Size

19.9 MB

Last updated

over 8 years ago

docker pull brimstone/unison