1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/shadowsocks/README.md
2015-06-11 23:00:57 +08:00

35 lines
537 B
Markdown

[`Shadowsocks`][1] is a secure socks5 proxy,
designed to protect your Internet traffic.
> If you want to keep a secret,
> you must also hide it from yourself.
## docker-compose.yml
```
shadowsocks:
image: vimagick/shadowsocks:latest
ports:
- "8388:8388"
environment:
- PASSWORD=secret
restart: always
```
## server
```
$ docker-compose up
```
## client
```
$ sslocal -c config.json
```
[read more][2]
[1]: http://shadowsocks.org
[2]: https://github.com/shadowsocks/shadowsocks/wiki/Configuration-via-Config-File