Installation

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

For details on the Docker CLI, please review the official docker run documentation.

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 ...

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

Last updated