diff --git a/VLESS-WS-Docker/config.json b/VLESS-WS-Docker/config.json new file mode 100644 index 0000000..7c91e6e --- /dev/null +++ b/VLESS-WS-Docker/config.json @@ -0,0 +1,39 @@ +{ + "log": { + "loglevel": "warning" + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": "", + "level": 0, + "email": "love@v2fly.org" + } + ], + "decryption": "none", + "fallbacks": [ + { + "dest": 8001 + } + ] + }, + "streamSettings": { + "network": "ws", + "wsSettings": { + "path": "/vmess" + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + } + ] +} diff --git a/VLESS-WS-Docker/docker-compose.yml b/VLESS-WS-Docker/docker-compose.yml new file mode 100644 index 0000000..613193c --- /dev/null +++ b/VLESS-WS-Docker/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3' +services: + xray: + image: teddysun/xray + restart: unless-stopped + network_mode: host + environment: + - V2RAY_VMESS_AEAD_FORCED=false + entrypoint: ["/usr/bin/xray", "-config", "/etc/xray/config.json"] + volumes: + - ./config.json:/etc/xray/config.json:ro