You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,28 @@ If you still have too many open files, then you need to raise your process's fil
78
78
79
79
As described in [this issue](https://github.com/githubnemo/CompileDaemon/issues/23) it might happen that you run out of inotify watchers which are limited by your system configuration. Please consider increasing them as is documented [here](https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers).
80
80
81
+
### Docker + Mac OS X
82
+
83
+
Some issues ([here][1] and [here][2]) report that changes on Docker
84
+
volumes under Mac OS X are not reported.
85
+
86
+
There seem to be issues with either the implementation of the bind file
87
+
system mount between Mac OS X hosts and Docker containers or in
88
+
`fsnotify/fsnotify` or a combination of both. As long as this is not
89
+
resolved, a possible workaround is to use polling:
90
+
91
+
```
92
+
CompileDaemon -polling
93
+
```
94
+
95
+
This will actively watch for changes, so it naturally uses more CPU
96
+
resources. You can tune the polling interval to your liking using the
97
+
`-polling-interval=N` parameter but be advised: you should never use
0 commit comments