mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-12-15 10:26:44 +00:00
add rpi-shadowsocks
This commit is contained in:
23
rpi-shadowsocks/2.9.1/README.md
Normal file
23
rpi-shadowsocks/2.9.1/README.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Run shadowsocks in RaspberryPi
|
||||
|
||||
## Run as server
|
||||
```
|
||||
docker run \
|
||||
-d \
|
||||
--restart always \
|
||||
--publish 1080:1080 \
|
||||
--name shadowsocks \
|
||||
newnius/rpi-shadowsocks \
|
||||
ssserver -p 1080 -k PASSWORD -m aes-256-cfb
|
||||
```
|
||||
|
||||
## Run as client
|
||||
```
|
||||
docker run \
|
||||
-d \
|
||||
--restart always \
|
||||
--publish 1081:1081 \
|
||||
--name shadowsocks \
|
||||
newnius/rpi-shadowsocks \
|
||||
sslocal -s SERVER_IP -p 1080 -l 1081 -k PASSWORD -m aes-256-cfb
|
||||
```
|
||||
Reference in New Issue
Block a user