You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
1.2 KiB
Bash

4 years ago
# 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