Python port of ShadowsocksR
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.

33 lines
728 B

FROM alpine
ENV SERVER_ADDR 0.0.0.0
ENV SERVER_PORT 51348
ENV PASSWORD=
8 years ago
ENV METHOD aes-128-ctr
ENV PROTOCOL auth_aes128_md5
ENV OBFS tls1.2_ticket_auth_compatible
ENV TIMEOUT 300
ENV DNS_ADDR 8.8.8.8
ENV DNS_ADDR_2 8.8.4.4
RUN apk update \
&& apk add python \
libsodium \
unzip \
wget \
&& rm -rf /var/cache/apk/*
RUN wget --no-check-certificate https://github.com/breakwa11/shadowsocks/archive/manyuser.zip -O /tmp/manyuser.zip \
&& unzip -d /tmp /tmp/manyuser.zip \
8 years ago
&& mv /tmp/shadowsocksr-manyuser/shadowsocks ~/shadowsocks \
&& rm -rf /tmp/*
8 years ago
WORKDIR ~/shadowsocks
8 years ago
CMD python ~/shadowsocks/server.py -p $SERVER_PORT -k $PASSWORD -m $METHOD -O $PROTOCOL -o $OBFS