Integrated tinyproxy to allow private trackers to see us browsing from the same ip address

This commit is contained in:
Jeremy Andrews
2017-06-09 13:20:40 +12:00
parent bd94feb26d
commit bf1a7c8195
2 changed files with 6 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ RUN apt-get update \
&& apt-get update \
&& apt-get install -y transmission-cli transmission-common transmission-daemon \
&& apt-get install -y openvpn curl rar unrar zip unzip wget \
&& apt-get install -y tinyproxy telnet\
&& curl -sLO https://github.com/Yelp/dumb-init/releases/download/v1.0.1/dumb-init_1.0.1_amd64.deb \
&& dpkg -i dumb-init_*.deb \
&& rm -rf dumb-init_*.deb \
@@ -27,6 +28,7 @@ RUN apt-get update \
ADD openvpn/ /etc/openvpn/
ADD transmission/ /etc/transmission/
ADD tinyproxy /opt/tinyproxy/
ENV OPENVPN_USERNAME=**None** \
OPENVPN_PASSWORD=**None** \
@@ -108,4 +110,5 @@ ENV OPENVPN_USERNAME=**None** \
# Expose port and run
EXPOSE 9091
EXPOSE 8888
CMD ["dumb-init", "/etc/openvpn/start.sh"]