make a dir and dive into
1 |
mkdir ~/hysteria && cd ~/hysteria |
make a config file, like client.json
1 2 3 4 5 6 7 8 9 10 11 12 13 |
{ "server": "jp.minirplus.com:989", "protocol": "udp", "up_mbps": 100, "down_mbps": 1000, "socks5": { "listen": ":1080", "timeout": 300, "disable_udp": false }, "insecure": false, "auth": "your-auth-code" } |
run a docker container
1 |
docker run -d -p 1080:1080 --name hysteria -v ~/hysteria/client.json:/etc/hysteria.json minirplus/hysteria:v1.0.4 -c /etc/hysteria.json client |
There are no comments yet