准备配置文件

1
2
mkdir -p /data/v2ray
vi /data/v2ray/config.json

/data/v2ray/config.json 内容,clients[].id 约等于密码,可以使用 Online UUID Generator 在线生成 UUID

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"log" : {
"access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log",
"loglevel": "warning"
},
"inbounds": [{
"port": 8010,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "6b8dc421-303e-465d-8a55-f25da343ee3b",
"level": 1,
"alterId": 64
}
]
}
}],
"outbounds": [{
"protocol": "freedom",
"settings": {}
}]
}

安装 & 运行

1
2
3
4
5
6
7
docker run -d \
--restart=always \
--name=v2ray \
-p 8010:8010 \
-v /data/v2ray/config.json:/etc/v2ray/config.json \
-v /data/v2ray/logs:/var/log/v2ray \
v2ray/official

客户端(Surge) 节点配置

1
2
3
# xx.xx.xx.xx 为服务端 IP 地址或域名
# 加密协议、IP 地址、端口、username 与服务端对号入座即可使用
My_VPS = vmess, xx.xx.xx.xx, 8010, username=6b8dc421-303e-465d-8a55-f25da343ee3b