1
0
mirror of https://github.com/6dylan6/jdpro.git synced 2026-02-04 14:03:13 +08:00
This commit is contained in:
roiding
2025-05-16 16:31:01 +08:00
committed by GitHub
3 changed files with 20 additions and 30 deletions

View File

@@ -104,11 +104,15 @@ DY_PROXY_RENUM='5' 获取IP失败重试次数
DY_PROXY_REDELAY='3' 获取失败重试间隔 单位秒
代理池模式支持全部js脚
****API代理的意思就是通过url得到随机可用代理response的格式就是xxx.xxx.xxx.xxx:xxxx**
代理池模式支持全部js
DP_POOL='http://xxx' 代理池url
PERMIT_JS='farm&plant&opencard' 需要走代理池的js关键词多个&分割,必须设置
PERMIT_JS='farm&plant&opencard' 需要走代理池的js关键词多个&分割可不设置如果不设置就是所有的js都会走
**代理池是一个固定不变的地址,通过这个地址服务,服务会自动转发请求到可用代理,本质上代理池就是一个代理服务器**
禁止指定的pin执行任务

View File

@@ -1,17 +1,12 @@
version: '2'
services:
ql_web:
image: whyour/qinglong:2.11.3
image: whyour/qinglong:2.17.9
container_name: ql
volumes:
- ./data/config:/ql/config
- ./data/log:/ql/log
- ./data/db:/ql/db
- ./data/scripts:/ql/scripts
- ./data/repo:/ql/repo
- ./qinglong/data:/ql/data
- ./qinglong/deps/pnpm:/root/.local/share/pnpm
- ./qinglong/deps/pip3:/usr/local/lib/python3.11/site-packages
ports:
- "0.0.0.0:5700:5700"
environment:
- ENABLE_HANGUP=true
- ENABLE_WEB_PANEL=true
restart: always
- "5700:5700"
restart: unless-stopped

View File

@@ -46,25 +46,16 @@ cd $ql_path
cat > docker-compose.yml <<EOF
version: '2'
services:
qinglong:
image: whyour/qinglong:2.11.3
container_name: qinglong
ql_web:
image: whyour/qinglong:2.17.9
container_name: ql
volumes:
- ./data/config:/ql/config
- ./data/log:/ql/log
- ./data/db:/ql/db
- ./data/scripts:/ql/scripts
- ./data/repo:/ql/repo
- ./qinglong/data:/ql/data
- ./qinglong/deps/pnpm:/root/.local/share/pnpm
- ./qinglong/deps/pip3:/usr/local/lib/python3.11/site-packages
ports:
- "0.0.0.0:5500:5700"
networks:
- net
environment:
- ENABLE_HANGUP=true
- ENABLE_WEB_PANEL=true
restart: always
networks:
net:
- "5700:5700"
restart: unless-stopped
EOF
docker-compose up -d
if [ $? -ne 0 ] ; then