base code
1 |
https://github.com/maxsky/shadowsocksr-manyuser.git |
local config file
1 2 3 4 |
@echo off If Not Exist "userapiconfig.py" Copy "apiconfig.py" "userapiconfig.py" If Not Exist "user-config.json" Copy "config.json" "user-config.json" If Not Exist "usermysql.json" Copy "mysql.json" "usermysql.json" |
how to use
- put three config file in the path:/root/shadowsocksr
- run container
1 2 3 4 5 6 7 |
docker run -d -p 989:989 \ --name ssr \ -v /root/shadowsocksr/userapiconfig.py:/shadowsocksr-manyuser/userapiconfig.py \ -v /root/shadowsocksr/user-config.json:/shadowsocksr-manyuser/user-config.json \ -v /root/shadowsocksr/usermysql.json:/shadowsocksr-manyuser/usermysql.json \ minirplus/ssrmu:3.3.3 |
change -p 989:989 with your own service port.
There are no comments yet