You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
471 B
19 lines
471 B
FROM alpine |
|
|
|
# install openvpn and the transmission-daemon |
|
RUN apk --update add openvpn transmission-daemon |
|
# create directories for downloaded files |
|
RUN mkdir -p /transmission/downloads |
|
RUN mkdir -p /transmission/incomplete |
|
|
|
# copy in openvpn configs |
|
COPY config.ovpn /openvpn/ |
|
COPY settings.json /transmission/ |
|
|
|
# copy in custom transmission theme |
|
COPY stage.tmp/theme/ /usr/share/transmission/web/ |
|
|
|
# copy in runscript |
|
COPY start_server.sh / |
|
|
|
CMD ["/start_server.sh"]
|
|
|