Files
docker-transmission/Dockerfile
2016-10-18 08:53:05 -04:00

26 lines
423 B
Docker
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM lsiobase/alpine
MAINTAINER sparklyballs
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# install packages
RUN \
apk add --no-cache \
curl \
jq \
transmission-cli \
transmission-daemon
# copy local files
COPY root/ /
# add files
ADD cron/ /etc/cron.d/
# ports and volumes
EXPOSE 9091 51413
VOLUME /config /downloads /watch