Skip to content

fmasa/docker-machine-unison

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
 
 
 
 
 
 
 
 
 
 

Docker Machine Unison

Syncing files between Windows host and Docker Machine can be pain in the ass. vboxsf is slow, samba is a bit faster but still slow compared to local filesystem.

With my little shell script you can provision your Docker machine with unison support in seconds.

Installation

Clone this repository:

git clone git@github.com:fmasa/docker-machine-unison.git

Run ./provision.sh from root directory and voila. First sync can take several seconds (minutes for huge shared folder), but then thigs are almost instant. Note that this script must be running all the time to sync files (it's watching changes in your shared folder).

Configuration

There is config.conf in root, where you can fiddle with several options:

  • DOCKER_MACHINE – name of the Docker Machine you want to sync your files with
  • UNISON_PROFILE_NAME – name of the profile used by unison
  • HOST_FOLDER – Folder in Windows to share with the VM
  • GUEST_FOLDER – Folder in Docker machine to share with Windows host
  • IGNORE – Folders and files to exclude from syncing
  • FASTCHECK (optional) – check changes based on modification time rather than file content

Note #1: HOST_FOLDER and GUEST_FOLDER should match (i.e. C:/dev --> /c/dev)

Fastcheck

Although Fastcheck provides nice performance boost, it is disabled by default as it may miss update when file content is changed but modification time isn't. Certain programs do that. See unison docs for more informations (section Fast Update Detection).

About

Unison file sync for Docker machine on Windows.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages