2016-06-09 00:50:08 +02:00
|
|
|
# A Python based monitoring and tracking tool for Plex Media Server.
|
|
|
|
#
|
2016-06-09 22:30:11 +02:00
|
|
|
# docker run -d \
|
2016-06-09 00:50:08 +02:00
|
|
|
# --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.
|
2016-06-09 22:30:11 +02:00
|
|
|
RUN apk add --no-cache \
|
2016-12-28 02:24:13 +01:00
|
|
|
ca-certificates \
|
|
|
|
python
|
2016-06-09 00:50:08 +02:00
|
|
|
|
2016-06-09 22:30:11 +02:00
|
|
|
# Get the source
|
2016-12-02 21:08:26 +01:00
|
|
|
ENV PLEXPY_VERSION v1.4.16
|
2016-06-09 22:30:11 +02:00
|
|
|
RUN set -x \
|
|
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
|
|
git \
|
|
|
|
&& mkdir -p /opt/plexpy \
|
2016-12-28 02:04:58 +01:00
|
|
|
&& git clone --depth 1 --branch "${PLEXPY_VERSION}" https://github.com/drzoidberg33/plexpy.git /opt/plexpy/ \
|
2016-06-09 22:30:11 +02:00
|
|
|
&& apk del .build-deps
|
2016-06-09 00:50:08 +02:00
|
|
|
|
|
|
|
# Volume for Plexpy data.
|
|
|
|
VOLUME /data
|
|
|
|
|
|
|
|
# Set the working directory.
|
|
|
|
WORKDIR /opt/plexpy
|
|
|
|
|
|
|
|
# Expose ports.
|
|
|
|
EXPOSE 8181
|
2016-06-09 22:30:11 +02:00
|
|
|
|
|
|
|
# Define default command.
|
2016-12-28 02:21:39 +01:00
|
|
|
ENTRYPOINT ["python", "PlexPy.py"]
|
|
|
|
CMD ["--nolaunch", "--datadir=/data"]
|