mirror of
https://github.com/okxlin/appstore.git
synced 2025-09-14 13:56:55 +08:00
Compare commits
2 Commits
693a1e9cff
...
028cb219dc
Author | SHA1 | Date | |
---|---|---|---|
![]() |
028cb219dc | ||
![]() |
76661dda90 |
7
apps/netdisk-fast-download/README.md
Normal file
7
apps/netdisk-fast-download/README.md
Normal file
@ -0,0 +1,7 @@
|
||||
# 云盘解析服务 (nfd云解析)
|
||||
|
||||
## 项目介绍
|
||||
|
||||
网盘直链解析工具能把网盘分享下载链接转化为直链,已支持蓝奏云/蓝奏云优享/奶牛快传/移动云云空间/小飞机盘/亿方云/123云盘/Cloudreve等,支持加密分享。
|
||||
|
||||
*重要声明:本项目仅供学习参考;请不要将此项目用于任何商业用途,否则可能带来严重的后果。转发/分享该项目请注明来源*
|
21
apps/netdisk-fast-download/data.yml
Normal file
21
apps/netdisk-fast-download/data.yml
Normal 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
|
BIN
apps/netdisk-fast-download/logo.png
Normal file
BIN
apps/netdisk-fast-download/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
10
apps/netdisk-fast-download/main/data.yml
Normal file
10
apps/netdisk-fast-download/main/data.yml
Normal 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
|
0
apps/netdisk-fast-download/main/data/db/.gitkeep
Normal file
0
apps/netdisk-fast-download/main/data/db/.gitkeep
Normal file
0
apps/netdisk-fast-download/main/data/logs/.gitkeep
Normal file
0
apps/netdisk-fast-download/main/data/logs/.gitkeep
Normal file
21
apps/netdisk-fast-download/main/docker-compose.yml
Normal file
21
apps/netdisk-fast-download/main/docker-compose.yml
Normal 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
|
10
apps/netdisk-fast-download/main/scripts/init.sh
Normal file
10
apps/netdisk-fast-download/main/scripts/init.sh
Normal 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
|
Loading…
Reference in New Issue
Block a user