Shadowsocks-go Docker Image by Teddysun
50K+

Shadowsocks-go is a lightweight tunnel proxy which can help you get through firewalls.
It is a port of Shadowsocks created by @cyfdecyf.
Docker images are built for quick deployment in various computing cloud providers.
For more information on docker and containerization technologies, refer to official document.
Dockerfile linkslatest (Dockerfile)amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390xIf you need to install docker by yourself, follow the official installation guide.
$ docker pull teddysun/shadowsocks-go
This pulls the latest release of shadowsocks-go.
It can be found at Docker Hub.
You must create a configuration file /etc/shadowsocks-go/config.json in host at first:
$ mkdir -p /etc/shadowsocks-go
A sample in JSON like below:
$ cat > /etc/shadowsocks-go/config.json <<EOF
{
"server":"0.0.0.0",
"server_port":9000,
"local_port":1080,
"password":"password0",
"method":"aes-256-cfb",
"timeout":120
}
EOF
This container with sample configuration /etc/shadowsocks-go/config.json
There is an example to start a container that listens on 9000 (both TCP and UDP):
$ docker run -d -p 9000:9000 -p 9000:9000/udp --name ss-go --restart=always -v /etc/shadowsocks-go:/etc/shadowsocks-go teddysun/shadowsocks-go
Warning: The port number must be same as configuration and opened in firewall.
Content type
Image
Digest
Size
4.1 MB
Last updated
over 5 years ago
docker pull teddysun/shadowsocks-go