https://github.com/oguzhane/go-shadowsocks2-docker
go-shadowsocks2 Docker image
https://github.com/oguzhane/go-shadowsocks2-docker
docker go proxy shadowsocks socks5
Last synced: 2 months ago
JSON representation
go-shadowsocks2 Docker image
- Host: GitHub
- URL: https://github.com/oguzhane/go-shadowsocks2-docker
- Owner: oguzhane
- License: mit
- Created: 2018-11-12T18:41:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-02T05:39:21.000Z (over 7 years ago)
- Last Synced: 2025-10-11T15:34:54.277Z (8 months ago)
- Topics: docker, go, proxy, shadowsocks, socks5
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-shadowsocks2-docker
This Dockerfile builds an image for [go-shadowsocks2](https://github.com/shadowsocks/go-shadowsocks2) based on golang alpine linux image.
## Quick Start
It uses ENTRYPOINT to run a container as the executable.
```
docker run -d --restart always -e SS_METHOD=AEAD_CHACHA20_POLY1305 -e SS_PASSWORD=$PASSWD -e SS_PORT=8388 -p 8388:8388 oguzhane/go-shadowsocks2-docker:latest
```
You can configure it to run with SS_METHOD, SS_PASSWORD and SS_PORT parameters. Just make sure that the port number given to Docker should be the same as the one given to shadowsocks.
For more information, refer to the [go-shadowsocks2 documantation](https://github.com/shadowsocks/go-shadowsocks2)