A Python based monitoring and tracking tool for Plex Media Server
10K+
This is a Docker image for PlexPy - the Python based monitoring and tracking tool for Plex Media Server.
The Docker image currently supports:
root)To run the PlexPy container you can execute:
docker run --name plexpy -v <datadir path>:/datadir -p 8181:8181 dbarton/plexpy
Open a browser and point it to http://my-docker-host:8181
You can also run the PlexPy container by using Docker Compose.
If you've cloned the git repository you can build and run the Docker container locally (without the Docker Hub):
docker-compose up -d
If you want to use the Docker Hub image within your existing Docker Compose file you can use the following YAML snippet:
plexpy:
image: "dbarton/plexpy"
container_name: "plexpy"
volumes:
- "<datadir path>:/datadir"
ports:
- "8181:8181"
restart: always
Please mount the following volumes inside your PlexPy container:
/datadir: Holds all the PlexPy data files (e.g. config, database)You might also want to mount the Logs directory of your Plex server into the container, in case you want to have access to the logs.
By default the PlexPy configuration is located on /datadir/config.ini.
If you want to change this you've to set the CONFIG environment variable, for example:
CONFIG=/datadir/plexpy.ini
By default PlexPy runs with user ID and group ID 666.
If you want to run PlexPy with different ID's you've to set the PLEXPY_UID and/or PLEXPY_GID environment variables, for example:
PLEXPY_UID=1234
PLEXPY_GID=1234
Content type
Image
Digest
Size
106.5 MB
Last updated
almost 9 years ago
docker pull dbarton/plexpy