1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
This commit is contained in:
kev 2015-06-11 23:00:57 +08:00
parent e4876e074b
commit e92d41c2ef
2 changed files with 34 additions and 7 deletions

34
shadowsocks/README.md Normal file

@ -0,0 +1,34 @@
[`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

@ -1,7 +0,0 @@
shadowsocks:
image: vimagick/shadowsocks:latest
ports:
- "8388:8388"
environment:
- PASSWORD=secret
restart: always