1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/obfsproxy/Dockerfile

27 lines
687 B
Docker
Raw Normal View History

2015-04-30 17:53:02 +08:00
#
# Dockerfile for obfsproxy
#
FROM ubuntu:14.04
MAINTAINER kev<noreply@datageek.info>
2015-04-30 17:58:22 +08:00
RUN apt-get update && apt-get install -y build-essential curl python python-dev
2015-04-30 18:03:27 +08:00
RUN curl https://bootstrap.pypa.io/get-pip.py | python
2015-04-30 17:53:02 +08:00
RUN pip install obfsproxy
2015-04-30 18:32:52 +08:00
ENV LOG_MIN_SEVERITY info
2015-04-30 17:53:02 +08:00
ENV DATA_DIR /var/lib/obfsproxy
ENV PASSWORD XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ENV DEST_ADDR openvpn
ENV DEST_PORT 1194
2015-05-01 16:25:42 +08:00
ENV RUN_MODE server
2015-04-30 17:53:02 +08:00
ENV LISTEN_ADDR 0.0.0.0
ENV LISTEN_PORT 4911
EXPOSE $LISTEN_PORT
2015-04-30 18:32:52 +08:00
CMD obfsproxy --log-min-severity=$LOG_MIN_SEVERITY --data-dir=$DATA_DIR \
scramblesuit --password=$PASSWORD --dest=$DEST_ADDR:$DEST_PORT \
2015-05-01 16:25:42 +08:00
$RUN_MODE $LISTEN_ADDR:$LISTEN_PORT
2015-04-30 18:32:52 +08:00