This commit is contained in:
MadDogOwner 2025-06-19 23:30:37 +08:00 committed by GitHub
commit 028cb219dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# 云盘解析服务 (nfd云解析)
## 项目介绍
网盘直链解析工具能把网盘分享下载链接转化为直链,已支持蓝奏云/蓝奏云优享/奶牛快传/移动云云空间/小飞机盘/亿方云/123云盘/Cloudreve等支持加密分享。
*重要声明:本项目仅供学习参考;请不要将此项目用于任何商业用途,否则可能带来严重的后果。转发/分享该项目请注明来源*

View File

@ -0,0 +1,21 @@
name: NFD 网盘直链解析
tags:
- 实用工具
- 云存储
title: 各类网盘直链解析
description: 各类网盘直链解析
additionalProperties:
key: netdisk-fast-download
name: NFD 网盘直链解析
tags:
- Storage
- Tool
shortDescZh: 各类网盘直链解析
shortDescEn: netdisk direct link parser
type: tool
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://github.com/qaiu/netdisk-fast-download
github: https://github.com/qaiu/netdisk-fast-download
document: https://github.com/qaiu/netdisk-fast-download

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,10 @@
additionalProperties:
formFields:
- default: 6401
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
required: true
rule: paramPort
type: number

View File

@ -0,0 +1,21 @@
services:
netdisk-fast-download:
image: ghcr.io/qaiu/netdisk-fast-download:main
container_name: ${CONTAINER_NAME}
restart: unless-stopped
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:6401"
volumes:
- ./data/resources:/app/resources
- ./data/db:/app/db
- ./data/logs:/app/logs
environment:
- TZ=Asia/Shanghai
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

View File

@ -0,0 +1,10 @@
#!/bin/bash
TEMP_CONTAINER_NAME="$(docker create ghcr.io/qaiu/netdisk-fast-download:main)"
if [ $? -ne 0 ]; then
echo "Failed to create container"
exit 1
fi
docker cp $TEMP_CONTAINER_NAME:/app/resources ./data
docker rm $TEMP_CONTAINER_NAME