Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.