mirror of
https://github.com/linuxserver/docker-tautulli.git
synced 2026-02-20 01:07:48 +08:00
22 lines
412 B
Docker
22 lines
412 B
Docker
FROM linuxserver/baseimage
|
|
MAINTAINER lonix <lonixx@gmail.com>
|
|
|
|
ENV APTLIST="git python"
|
|
|
|
#Applying stuff
|
|
RUN apt-get update -q && \
|
|
apt-get install $APTLIST -qy && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/* /var/tmp/*
|
|
|
|
#Adding Custom files
|
|
ADD init/ /etc/my_init.d/
|
|
ADD services/ /etc/service/
|
|
RUN chmod -v +x /etc/service/*/run /etc/my_init.d/*.sh
|
|
|
|
# Volumes and Ports
|
|
VOLUME /config /logs
|
|
EXPOSE 8181
|
|
|
|
|
|
|