1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00

add obfsproxy

This commit is contained in:
kev 2015-04-30 17:53:02 +08:00
parent ea47a4be6a
commit 231b582d63
2 changed files with 35 additions and 0 deletions

22
obfsproxy/Dockerfile Normal file

@ -0,0 +1,22 @@
#
# Dockerfile for obfsproxy
#
FROM ubuntu:14.04
MAINTAINER kev<noreply@datageek.info>
RUN apt-get update && apt-get install build-essential curl python python-dev
RUN curl https://bootstrap.pypi.org/get-pip.py | python
RUN pip install obfsproxy
ENV DATA_DIR /var/lib/obfsproxy
ENV PASSWORD XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ENV DEST_ADDR openvpn
ENV DEST_PORT 1194
ENV LISTEN_ADDR 0.0.0.0
ENV LISTEN_PORT 4911
EXPOSE $LISTEN_PORT
CMD obfsproxy --data-dir=$DATA_DIR scramblesuit --password=$PASSWORD --dest=$DEST_ADDR:$DEST_PORT \
server $LISTEN_ADDR:LISTEN_PORT

13
obfsproxy/fig.yml Normal file

@ -0,0 +1,13 @@
obfsproxy:
image: vimagick/obfsproxy:latest
ports:
- "4911:4911"
links:
- openvpn_server_1:openvpn
environment:
- PASSWORD=J23TNHPJPAOQJLTCPLFD4CQYVFY6MEVP
- DEST_HOST=openvpn
- DEST_PORT=1194
- LISTEN_ADDR=0.0.0.0
- LISTEN_PORT=4911
restart: always