daviddwlee84 / DataManagement

Notes of setup data backup or other stuff like NAS etc.
1 stars 0 forks source link

Plex related #5

Open daviddwlee84 opened 3 years ago

daviddwlee84 commented 3 years ago

Transcode

daviddwlee84 commented 3 years ago

HDHomeRun & Plex DVR

daviddwlee84 commented 3 years ago

Subtitle


daviddwlee84 commented 2 years ago

Docker

How to install Plex Media Server on OpenMediaVault 5 using Docker with Portainer on Raspberry Pi 4 - YouTube

docker run -d \
  --name=plex2 \
  --net=host \
  -e PUID=1000 \
  -e PGID=1000 \
  -e VERSION=docker \
  -e PLEX_CLAIM= `#optional` \
  -v /home/pi/Plex:/config \
  -v /home/pi/Videos:/data \
  --restart unless-stopped \
  lscr.io/linuxserver/plex
docker run \
-d \
--name plex \
--network=host \
-e PLEX_CLAIM="<claimToken>" \
-v /home/pi/Plex:/config \
-v /home/pi/Videos:/data \
plexinc/pms-docker