initial upload

This commit is contained in:
Rune
2017-11-12 17:37:32 +01:00
commit ff0543ddc6
4 changed files with 44 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM crazymanjinn/zfs-utils
ENV zfswatcher_package="zfswatcher_0.4.6-1_amd64.deb" \
zfswatcher_link="https://github.com/rouben/zfswatcher/releases/download/0.4.6/"
RUN curl -OL ${zfswatcher_link}${zfswatcher_package} && \
dpkg -i ${zfswatcher_package} && \
rm ${zfswatcher_package}
COPY zfswatcher /opt/bin/zfswatcher
ENTRYPOINT ["/opt/bin/zfswatcher"]