Last active
April 18, 2017 16:15
-
-
Save linktohack/f301602a64d11ae285df41f23caf5afa to your computer and use it in GitHub Desktop.
Plex with cifs & nfs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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