Installation
Plex Shuffler is currently in ALPHA. If you would like to help test Plex Shuffler, please use this image DouwJacobs/plex-shuffler:development
!
Docker
Be sure to replace /path/to/appdata/config
in the below examples with a valid host directory path. If this volume mount is not configured correctly, your Plex Shuffler settings/data will not be persisted when the container is recreated (e.g., when updating the image or rebooting your machine).
The TZ
environment variable value should also be set to the TZ database name of your time zone!
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 ...
Last updated