From 41249b6756d8560ba64af94e0f797543138f94e6 Mon Sep 17 00:00:00 2001 From: evlic Date: Thu, 1 Dec 2022 23:02:35 +0800 Subject: [PATCH] :tada: init(project) --- .DS_Store | Bin 0 -> 6148 bytes .env | 5 +++++ .gitignore | 1 + README.md | 11 +++++++++++ docker-compose.yaml | 45 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 62 insertions(+) create mode 100644 .DS_Store create mode 100644 .env create mode 100644 .gitignore create mode 100644 docker-compose.yaml diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..d714c776f537ddc19621fcda26a9ab6ef175f2b2 GIT binary patch literal 6148 zcmeHK%}&BV5Z(pU1!Lr3BFA35aR4Qv2a^Wz;LW5)4{D%I2{gf$&|=kE)7Q{9@(Fw$ zXLh$nA_q^#$V{^P&FswVcD|(h!x-b8ncHNn$`}*S5IHIf1cw*83OX2(;~e3{83ztn zZ_Y&f{yN~d7n#q7?B0pLe*f4DqekPM7mB5o)ioh1qOwuBu|`2`MRqg`JNEPntus3s zIa)stg7K$rI~U#{?p3#r13$7oe=wEFo;!e$>r2mfgSZpSd^eQySjr(pS(JO#T9UL| z&AQP#Xs2}}Ioxf4zPF#IWwE`}JUZ>)K0GE*>GO-?mjnG$HZ|t(3W_f8&YJq;z#qa$ z9-T)K5(C5lF+dC~6$APh5bH}-H5E$?5CcD90QUz28ltH&Qz*9%=km;3^%)4IO7{%oM70#^uT|k6t-{yl}ZXj2kkXaZ@4n!~iic z&p=U`RXqPs;FnqW$e&Lkix?mV{uu+j)U~=DC`zBL-^#`+s heWWIx%5R_!ai+#hA Docker Compose 模版文件 + +.env 环境变量 + +v2a 数据 + +ngx 数据 + +subv 不推荐做调整,默认开放端口使用就合适了 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..6e803bc --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,45 @@ +version: '2.12' +services: + v2: + container_name: v2 + image: mzz2017/v2raya:latest + restart: always + ports: + - 7990-7999:7990-7999 + networks: + - vlss + volumes: + - ${DIR}/v2a:/etc/v2raya + environment: + V2RAYA_ADDRESS: 0.0.0.0:7997 + depends_on: + - ngx + + ngx: + container_name: ngx + image: nginx:latest + restart: always + ports: + - 80:80 + - 443:443 + networks: + - vlss + volumes: + - ${DIR}/ngx/etc:/etc/nginx + - ${DIR}/ngx/log:/var/log/nginx + + subconv: + container_name: subv + restart: always + image: tindy2013/subconverter:latest + ports: + - 25500:25500 + networks: + - vlss + depends_on: + - ngx + + +networks: + vlss: + driver: bridge \ No newline at end of file