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
{{ message }}
This repository was archived by the owner on Jul 25, 2024. It is now read-only.
Thanks so much for sharing your work! I gave this a try, but after I initially was super happy how well it worked I realised an issue related to watching files that are mounted from the host. I am unsure whether I am simply not using the right mount options or whether what I am trying to do will not work. Our use case is to mount a source directory with -v on docker run, and having a webpack-dev-server running in the container. Whenever a file is changed in the source directory, the dev server should recompile, which it doesn't.
To reproduce (without webpack-dev-server, just using inotifywait):
test.txt
test text
test.sh
#!/bin/sh
while inotifywait test.txt; do
echo "file changed"
done