Skip to content

Instantly share code, notes, and snippets.

@bhoriuchi
Created December 9, 2017 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhoriuchi/39757111b23e13ac40f278da1562c5eb to your computer and use it in GitHub Desktop.
Save bhoriuchi/39757111b23e13ac40f278da1562c5eb to your computer and use it in GitHub Desktop.
Update Plex docker image
#!/bin/bash
docker pull plexinc/pms-docker
docker stop plex
docker rm plex
# set volumes per your environment
docker run \
-d \
--name plex \
--network=host \
-e TZ="America/Los_Angeles" \
-v /nfs/docker/plex:/config \
-v /var/plex/transcode:/transcode \
-v /nfs:/data \
plexinc/pms-docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment