Added Dockerfile

This commit is contained in:
2018-10-30 22:16:00 +00:00
parent 3e35e009bb
commit 7447b8a933
+17
View File
@@ -0,0 +1,17 @@
FROM plexinc/pms-docker:public
MAINTAINER docker@custom-coding.net
ENTRYPOINT ["/init"]
COPY root/ /
RUN apt-get update -qq && apt-get install -qq -y \
fuse \
wget \
&& echo "user_allow_other" > /etc/fuse.conf \
&& /plexdrive-install.sh \
&& rm -rf /tmp/* /var/lib/apt/lists/*
HEALTHCHECK --interval=3m --timeout=100s \
CMD test -r $(find ${PLEXDRIVE_MOUNT_POINT} -maxdepth 1 -print -quit) && /healthcheck.sh || exit 1