Skip to content

Instantly share code, notes, and snippets.

@linktohack
Last active April 18, 2017 16:15
Show Gist options
  • Save linktohack/f301602a64d11ae285df41f23caf5afa to your computer and use it in GitHub Desktop.
Save linktohack/f301602a64d11ae285df41f23caf5afa to your computer and use it in GitHub Desktop.
Plex with cifs & nfs
FROM plexinc/pms-docker:latest
MAINTAINER [email protected]
RUN \
# Update and get dependencies
apt-get update && \
apt-get install -y smbclient cifs-utils nfs-common && \
curl -s https://install.zerotier.com/ | bash || true && \
# Cleanup
apt-get -y autoremove && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /tmp/* && \
rm -rf /var/tmp/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment