shadowsocks_install/docker/shadowsocks-go
Teddysun a5c3211a84
Update comments
Signed-off-by: Teddysun <i@teddysun.com>
2019-01-13 23:55:13 +09:00
..
.dockerignore Added shadowsocks-go docker image 2018-11-05 16:44:54 +09:00
config_sample.json Added shadowsocks-go docker image 2018-11-05 16:44:54 +09:00
Dockerfile Update comments 2019-01-13 23:55:13 +09:00
README.md Added shadowsocks-go docker image 2018-11-05 16:44:54 +09:00

Shadowsocks-go Docker Image by Teddysun

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.

Prepare the host

If you need to install docker by yourself, follow the official installation guide.

Pull the image

$ docker pull teddysun/shadowsocks-go

This pulls the latest release of shadowsocks-go.

It can be found at Docker Hub.

Start a container

You must create a configuration file /etc/shadowsocks-go/config.json in host at first, and sample:

{
    "server":"0.0.0.0",
    "server_port":9000,
    "local_port":1080,
    "password":"password0",
    "method":"aes-256-cfb",
    "timeout":120
}

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 -v /etc/shadowsocks-go:/etc/shadowsocks-go teddysun/shadowsocks-go

Note: The port number must be same as configuration.