Skip to content
Snippets Groups Projects
Verified Commit c1e53f27 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Try using inotify

parent 3fcfcaea
No related branches found
No related tags found
No related merge requests found
Pipeline #2603 passed
FROM alpine:3.10
FROM alpine:3.15
RUN apk add --no-cache \
fswatch
inotify-tools
ADD src/entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["fswatch"]
ENTRYPOINT ["/docker-entrypoint.sh"]
inotifywait -e close_write,moved_to,create -m $CONFIG_DIR |
while read -r directory events filename; do
killall -SIGHUP quasselcore
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment