mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 12:39:10 +01:00
36 lines
693 B
Docker
36 lines
693 B
Docker
# A Python based monitoring and tracking tool for Plex Media Server.
|
|
#
|
|
# docker run -d \
|
|
# --name=PlexPy \
|
|
# -v <path to plexlogs>:/data/logs \
|
|
# -p 8181:8181 \
|
|
# arukaen/plexpy
|
|
|
|
FROM alpine:latest
|
|
MAINTAINER Cris G c@cristhekid.com
|
|
|
|
# Install required packages.
|
|
RUN \
|
|
apk add --update \
|
|
git \
|
|
python \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
# Create Plexpy directory
|
|
RUN mkdir -p /opt/plexpy
|
|
|
|
# Clone the repo.
|
|
RUN git clone https://github.com/drzoidberg33/plexpy.git /opt/plexpy/
|
|
|
|
# Volume for Plexpy data.
|
|
VOLUME /data
|
|
|
|
# Set the working directory.
|
|
WORKDIR /opt/plexpy
|
|
|
|
# Define default command.
|
|
CMD ["python", "PlexPy.py", "--nolaunch", "--datadir=/data"]
|
|
|
|
# Expose ports.
|
|
EXPOSE 8181
|