mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
19 lines
1.2 KiB
Bash
19 lines
1.2 KiB
Bash
|
# Plex organizes video, music and photos from personal media libraries and
|
||
|
# streams them to smart TVs, streaming boxes and mobile devices. This container
|
||
|
# is packaged as a standalone Plex Media Server. has always been a top priority.
|
||
|
# Straightforward design and bulk actions mean getting things done faster.
|
||
|
|
||
|
source ./.env
|
||
|
docker run -d \
|
||
|
--name=plex \
|
||
|
--net=host `# Use Host Networking` \
|
||
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
||
|
-e PGID=${PGID:-100} `# for UserID` \
|
||
|
-e VERSION=docker `# Set whether to update plex or not - see Application Setup section.` \
|
||
|
-e PLEX_CLAIM= `# optional` `# Optionally you can obtain a claim token from https://plex.tv/claim and input here. Keep in mind that the claim tokens expire within 4 minutes.` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/plex/config:/config `# Plex library location. *This can grow very large, 50gb+ is likely for a large collection.*` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/plex/tv:/tv `# Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc.` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/plex/movies:/movies `# Media goes here. Add as many as needed e.g. `/movies`, `/tv`, etc.` \
|
||
|
--restart unless-stopped \
|
||
|
ghcr.io/linuxserver/plex
|