Installation

triangle-exclamation
circle-info

After running Plex Shuffler for the first time, configure it by visiting the web UI at http://[address]:3210 and completing the setup steps.

Docker

circle-exclamation

For details on the Docker CLI, please review the official docker run documentationarrow-up-right.

Installation:

docker run -d \
  --name plex-shuffler \
  -e LOG_LEVEL=debug \
  -e TZ=Asia/Tokyo \
  -e PORT=3210 `#optional` \
  -p 3210:3210 \
  -v /path/to/appdata/config:/app/config \
  --restart unless-stopped \
  douwjacobs/plex-shuffler

Updating:

Stop and remove the existing container:

docker stop plex-shuffler && docker rm plex-shuffler

Pull the latest image:

docker pull douwjacobs/plex-shuffler

Finally, run the container with the same parameters originally used to create the container:

docker run -d ...
circle-info

You may alternatively use a third-party updating mechanism, such as Watchtowerarrow-up-right or Ouroborosarrow-up-right, to keep Plex Shuffler up-to-date automatically.

Last updated