Last active
September 4, 2022 15:49
-
-
Save kas-cor/a1dd4bbc45fca9fab22a8920d5c63ccb to your computer and use it in GitHub Desktop.
shadowsocks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
shadowsocks: | |
image: shadowsocks/shadowsocks-libev:latest | |
environment: | |
- TZ=Europe/Moscow | |
- PASSWORD=<password> | |
- METHOD=chacha20-ietf-poly1305 | |
- DNS_ADDRS=1.1.1.1,1.0.0.1 | |
- ARGS=--fast-open --no-delay --reuse-port | |
ports: | |
- "8388:8388" | |
- "8388:8388/udp" | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment