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.
Clone this repository:
git clone [email protected]: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).
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)
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).