mirror of
https://github.com/linuxserver/docker-transmission.git
synced 2025-11-01 17:35:46 +01:00
15 lines
219 B
Docker
15 lines
219 B
Docker
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
|