“Docker 安装 v2ray”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
 
(未显示同一用户的3个中间版本)
第23行: 第23行:
  
 
=== 在宿主机上准备配置文件 ===
 
=== 在宿主机上准备配置文件 ===
/path/to/config.json<syntaxhighlight lang="console">
+
/etc/v2fly/config.json<syntaxhighlight lang="console">
 
{
 
{
 
   "inbounds": [{
 
   "inbounds": [{
     "port": 443,
+
     "port": 10086, // 服务器监听端口,必须和上面的一样
 
     "protocol": "vmess",
 
     "protocol": "vmess",
 
     "settings": {
 
     "settings": {
       "clients": [
+
       "clients": [{ "id": "b831381d-6324-4d53-ad4f-8cda48b30811" }]
        {
+
     }
          "id": "xxxxxxxxxx",
 
          "level": 1,
 
          "alterId": 64
 
        }
 
      ]
 
     },
 
    "streamSettings": {
 
        "network": "ws",
 
        "security": "tls",
 
        "tlsSettings": {
 
          "certificates": [
 
            {
 
              "certificateFile": "/etc/v2ray/v2ray.crt",
 
              "keyFile": "/etc/v2ray/v2ray.key"
 
            }
 
          ]
 
        }
 
      }
 
 
   }],
 
   }],
   "outbounds": [
+
   "outbounds": [{
  {
 
 
     "protocol": "freedom",
 
     "protocol": "freedom",
 
     "settings": {}
 
     "settings": {}
  }
+
  }]
  ]
 
 
 
 
 
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>

2023年2月7日 (二) 05:54的最新版本

https://github.com/v2fly/docker

拉取镜像

[root@your-vps ~]# docker pull v2ray/official
Using default tag: latest
latest: Pulling from v2ray/official
c9b1b535fdd9: Pull complete 
e988f487316f: Pull complete 
9f14b9e76a1c: Pull complete 
ba8aa6f3f262: Pull complete 
47a7d45748ed: Pull complete 
a1eaab65098b: Pull complete 
95f134d2f540: Pull complete 
Digest: sha256:978c67f3dba2afb01b710620f8bc0392b36729facad466b90a49f3d7f30404be
Status: Downloaded newer image for v2ray/official:latest
docker.io/v2ray/official:latest



在宿主机上准备配置文件

/etc/v2fly/config.json

{
  "inbounds": [{
    "port": 10086, // 服务器监听端口,必须和上面的一样
    "protocol": "vmess",
    "settings": {
      "clients": [{ "id": "b831381d-6324-4d53-ad4f-8cda48b30811" }]
    }
  }],
  "outbounds": [{
    "protocol": "freedom",
    "settings": {}
  }]
}