mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 14:44:57 +00:00
31 lines
850 B
Docker
31 lines
850 B
Docker
# Transmission and OpenVPN
|
|
#
|
|
# Version 1.5
|
|
|
|
FROM ubuntu:14.04
|
|
MAINTAINER Kristian Haugene
|
|
|
|
VOLUME /data
|
|
VOLUME /config
|
|
|
|
# Update packages and install software
|
|
RUN apt-get update \
|
|
&& apt-get -y install software-properties-common \
|
|
&& add-apt-repository ppa:qbittorrent-team/qbittorrent-stable \
|
|
&& apt-get update \
|
|
&& apt-get install -y qbittorrent openvpn curl \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
|
&& curl -L https://github.com/jwilder/dockerize/releases/download/v0.0.2/dockerize-linux-amd64-v0.0.2.tar.gz | tar -C /usr/local/bin -xzv
|
|
|
|
# Add configuration and scripts
|
|
ADD openvpn/ /etc/openvpn/
|
|
ADD qBittorrent/ /etc/qBittorrent/
|
|
|
|
ENV OPENVPN_USERNAME=**None** \
|
|
OPENVPN_PASSWORD=**None** \
|
|
OPENVPN_PROVIDER=**None**
|
|
|
|
# Expose port and run
|
|
EXPOSE 9091
|
|
CMD ["/etc/openvpn/start.sh"]
|