Sign inSign up

bingozb/shadowsocksr

By bingozb

•Updated over 8 years ago

A fast tunnel proxy that helps you bypass firewalls.

Image
1

194

bingozb/shadowsocksr repository overview

⁠docker-shadowsocksr

A fast tunnel proxy that helps you bypass firewalls.

⁠Build

You can pull the image from hub.docker.com.

$ docker pull bingozb/shadowsocksr

Or, you can build with source repository by yourself.

$ git clone https://github.com/bingozb/docker-shadowsocksr.git
$ cd docker-shadowsocksr
$ docker build -t bingozb/shadowsocksr .

⁠Usage

This is the fastest way to start a shadowsocks container with default config.

$ sudo docker run --restart always -d \ 
--name ssr \
-p 12188:12188 \
bingozb/shadowsocksr
ENVValues
SERVER_ADDR0.0.0.0
SERVER_PORT12188
PASSWORD01234567a
METHODaes-256-cfb
PROTOCOLorigin
PROTOCOLPARAM32
OBFSplain
TIMEOUT300

If you want to customize some configurations of shadowsocksr, you can run with tag -e, eg.:

$ sudo docker run --restart always -d \ 
--name ssr \
-e "SERVER_ADDR=0.0.0.0" \
-e "SERVER_PORT=12345" \
-e "PASSWORD=yourpassword" \
-e "METHOD=aes-128-ctr" \
-e "PROTOCOL=auth_aes128_md5" \
-e "PROTOCOLPARAM=32" \
-e "OBFS=tls1.2_ticket_auth_compatible" \
-e "TIMEOUT=300" \
-p 12345:12345 \
bingozb/shadowsocksr

Finally, check the iptables config and make sure that the firewall is not blocking the SERVER_PORT.

Tag summary

Content type

Image

Digest

Size

13.6 MB

Last updated

over 8 years ago

docker pull bingozb/shadowsocksr