Files
docker-transmission/Dockerfile
2016-07-01 09:46:34 +01:00

15 lines
219 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
# install packages
RUN \
apk add --no-cache \
transmission-daemon
# add local files
COPY root/ /
# Volumes and Ports
VOLUME /config /downloads /watch
EXPOSE 9091 51413