Expected behavior
When a change is made to a file in a shared volume on the host, the WRITE and CHMOD events should propagate to the container
Actual behavior
The CHMOD and WRITE events happen in the host, but only the CHMOD event propagates
Information
When modifying handlers.go
in the host
Host output:
[info] fsnotify event: "./handlers.go": CHMOD
[info] fsnotify event: "./handlers.go": WRITE
Container output:
[info] fsnotify event: "./handlers.go": CHMOD
System information
$ pinata diagnose -u
OS X: version 10.11.4 (build: 15E65)
Docker.app: version: v1.11.1-beta14.5.m
Running diagnostic tests:
[OK] docker-cli
[OK] Moby booted
[OK] driver.amd64-linux
[OK] vmnetd
[OK] osxfs
[OK] db
[OK] slirp
[OK] menubar
[OK] environment
[OK] Docker
[OK] VT-x
Steps to reproduce the behavior
- Create a container with a shared volume
- Modify a file from the host
- Observe file-system events in host and container