Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/io-sgr/docker-alpine-ssserver
Tiny image which brings you a Shadowsocks server using shadowsocks-libev
https://github.com/io-sgr/docker-alpine-ssserver
alpine alpine-image alpine-linux docker docker-image shadowsocks shadowsocks-libev shadowsocks-server
Last synced: 3 days ago
JSON representation
Tiny image which brings you a Shadowsocks server using shadowsocks-libev
- Host: GitHub
- URL: https://github.com/io-sgr/docker-alpine-ssserver
- Owner: io-sgr
- License: apache-2.0
- Created: 2017-07-03T07:00:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-03T07:02:05.000Z (over 7 years ago)
- Last Synced: 2024-11-19T21:34:40.975Z (2 months ago)
- Topics: alpine, alpine-image, alpine-linux, docker, docker-image, shadowsocks, shadowsocks-libev, shadowsocks-server
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-alpine-ssserver
Tiny image which brings you a Shadowsocks server using shadowsocks-libev# Usage
1. Create a Shadowsocks server configuration file at **/ss-server.json** for example, with content:
```
{
"server":"",
"server_port":8888,
"local_port":1080,
"password":"",
"timeout":180,
"method":""
}
```
The server needs to listen at port **8888** because that's the port that docker image exposed. You will able to map it to a different port later. DO NOT change this port unless you know what you are doing.2. Run the following command:
```
docker run -d \
-p :8888 \
-v /ss-server.json:/etc/shadowsocks-libev/config.json \
sgrio/alpine-ssserver
```
3. Now you have a Shadowsocks server listening at the **actual_port** you just passed to the command.