- Dockerfile: builds a Shadowsocks image - shadowsocks.json default config file - README.md: describing the usage of the image
1.1 KiB
1.1 KiB
Shadowsocks Dockerized
What is Shadowsocks
A secure socks5 proxy designed to protect your Internet traffic.
What is Docker
An open platform for distributed applications for developers and sysadmins.
How to use this image
Start the daemon for the firt time
Pull the image.
$ docker pull leesah/shadowsocks
Create a data container and edit the configuration file.
$ docker run --name shadowsocks-data leesah/shadowsocks /bin/true
$ docker run --interactive --tty --rm --volumes-from shadowsocks-data leesah/shadowsocks vi /etc/shadowsocks/shadowsocks.json
Start the daemon container.
$ docker run --name shadowsocks-app --detach --publish 58388:8388 --volumes-from shadowsocks-data leesah/shadowsocks
Stop the daemon
$ docker stop shadowsocks-app
Start a stopped daemon
$ docker start shadowsocks-app
Upgrade
COMING SOON
Use in CoreOS
COMING SOON
Use with fig
COMING SOON