Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apps/netdisk-fast-download/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 云盘解析服务 (nfd云解析)

## 项目介绍

网盘直链解析工具能把网盘分享下载链接转化为直链,已支持蓝奏云/蓝奏云优享/奶牛快传/移动云云空间/小飞机盘/亿方云/123云盘/Cloudreve等,支持加密分享。

*重要声明:本项目仅供学习参考;请不要将此项目用于任何商业用途,否则可能带来严重的后果。转发/分享该项目请注明来源*
21 changes: 21 additions & 0 deletions apps/netdisk-fast-download/data.yml
Original file line number Diff line number Diff line change
@@ -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 added apps/netdisk-fast-download/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions apps/netdisk-fast-download/main/data.yml
Original file line number Diff line number Diff line change
@@ -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
Empty file.
Empty file.
Empty file.
21 changes: 21 additions & 0 deletions apps/netdisk-fast-download/main/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions apps/netdisk-fast-download/main/scripts/init.sh
Original file line number Diff line number Diff line change
@@ -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