lscr.io/linuxserver/plex:latest
should retrieve the correct image for your arch, but you can also pull specific arch images via tags.<your-ip>:32400/web
IMPORTANT NOTE:- YOU CANNOT UPDATE TO A PLEXPASS ONLY (BETA) VERSION IF YOU ARE NOT LOGGED IN WITH A PLEXPASS ACCOUNT
docker
: Let Docker handle the Plex Version, we keep our Dockerhub Endpoint up to date with the latest public builds. This is the same as leaving this setting out of your create command.latest
: will update plex to the latest version available that you are entitled to.public
: will update plexpass users to the latest public version, useful for plexpass users that don't want to be on the bleeding edge but still want the latest public updates.<specific-version>
: will select a specific version (eg 0.9.12.4.1192-9a47d21) of plex to install, note you cannot use this to access plexpass versions if you do not have plexpass.--runtime=nvidia
and add an environment variable -e NVIDIA_VISIBLE_DEVICES=all
(can also be set to a specific gpu's UUID, this can be discovered by running nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv
). NVIDIA automatically mounts the GPU and drivers from your host into the plex docker.<external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.-p
)--net
)--net=host
-e
)PUID=1000
PGID=1000
VERSION=docker
PLEX_CLAIM=
-v
)/config
/tv
/movies
, /tv
, etc./movies
/movies
, /tv
, etc.FILE__
.PASSWORD
based on the contents of the /run/secrets/mysecretpassword
file.-e UMASK=022
setting. Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up here before asking for support.PLEX_CLAIM
to claim a server set up with bridge networking.--device=/dev/dri:/dev/dri
--device=/dev/dvb:/dev/dvb
-v
flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID
and group PGID
.PUID=1000
and PGID=1000
, to find yours use id user
as below:docker exec -it plex /bin/bash
docker logs -f plex
docker inspect -f '{{ index .Config.Labels "build_version" }}' plex
docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/plex:latest
UMASK_SET
in favor of UMASK in baseimage, see above for more information./transcode
volume mapping as it is now set via plex gui and defaults to a location under /config
.VERSION=public
./transcode
volume support (upstream Plex change) and modified PlexPass download method to prevent unauthorised usage of paid PMS