提交合并

Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
2024-07-17 16:30:13 +08:00
committed by qyg2297248353
commit 6c18fe434d
449 changed files with 21391 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
additionalProperties:
formFields:
- default: "host"
edit: true
envKey: NETWORK_MODE
labelZh: 网络模式
labelEn: Network Mode
required: true
type: select
values:
- label: 主机模式
value: "host"
- label: 桥接模式
value: "bridge"
- label: 无网络
value: "none"
- label: 1panel-network
value: "1panel-network"
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI Port
required: true
rule: paramPort
type: number
- default: 6881
edit: true
envKey: PANEL_APP_PORT_TORRENTING
labelZh: Torrenting 端口
labelEn: Torrenting Port
required: true
rule: paramPort
type: number
- default: "/home/qBittorrent"
edit: true
envKey: QBITTORRENT_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: ""
edit: true
envKey: CUSTOM_MOUNT_DIRECTORY_1
labelEn: Custom mount directory 1
labelZh: 自定义挂载目录 1
required: false
type: text
- default: ""
edit: true
envKey: CUSTOM_MOUNT_DIRECTORY_2
labelEn: Custom mount directory 2
labelZh: 自定义挂载目录 2
required: false
type: text
- default: ""
edit: true
envKey: CUSTOM_MOUNT_DIRECTORY_3
labelEn: Custom mount directory 3
labelZh: 自定义挂载目录 3
required: false
type: text
+32
View File
@@ -0,0 +1,32 @@
version: "3.8"
networks:
1panel-network:
external: true
services:
qbittorrent:
image: linuxserver/qbittorrent:4.6.5
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
network_mode: ${NETWORK_MODE}
ports:
- ${PANEL_APP_PORT_HTTP}
- ${PANEL_APP_PORT_TORRENTING}
- ${PANEL_APP_PORT_TORRENTING}/udp
env_file:
- /etc/1panel/envs/global.env
volumes:
- ${QBITTORRENT_ROOT_PATH}/config:/config
- ${QBITTORRENT_ROOT_PATH}/downloads:/downloads
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
environment:
- PUID=0
- PGID=0
- UMASK=022
- WEBUI_PORT=${PANEL_APP_PORT_HTTP}
- TORRENTING_PORT=${PANEL_APP_PORT_TORRENTING}
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+31
View File
@@ -0,0 +1,31 @@
# qBittorrent
qBittorrent是一个跨平台的开源、自由的BitTorrent客户端,其图形用户界面是通过Qt所写,后端使用libtorrent。
![qBittorrent](https://file.lifebus.top/imgs/qbittorrent_cover.jpg)
## 特性
+ DHT, PEX, 加密连接, 本地节点发现, UPnP, NAT-PMP 端口中继, µTP, 磁力链接, PT下载
+ 带宽管理
+ 可以指定网络接口
+ 易于管理torrent, tracker 和节点(torrent的队列、优先顺序,和其中文件各自分别的下载顺序)
+ Unicode支持
+ 75种语言的本地化。
+ 综合的搜索引擎,接口类似eMule。
+ IP过滤: 文件类型 eMule dat, 或 PeerGuardian
+ 支持IPv6
+ 集成RSS阅读器,可以订阅并下载
+ 内置torrrent搜索引擎(同时搜索多个torrent网站)
+ Web界面
+ Torrent创建工具
## 安装说明
您必须在设置的 Web UI 部分更改用户名/密码。
如果不更改密码,每次容器启动时都会生成一个新密码。
> 用户名:admin
>
> 密码:{日志中查询}
+18
View File
@@ -0,0 +1,18 @@
name: qBittorrent
title: BitTorrent客户端
description: BitTorrent客户端
additionalProperties:
key: qbittorrent
name: qBittorrent
tags:
- WebSite
- Tool
- Local
shortDescZh: BitTorrent客户端
shortDescEn: BitTorrent client
type: website
crossVersionUpdate: true
limit: 0
website: https://www.qbittorrent.org/
github: https://github.com/qbittorrent/qBittorrent/
document: https://github.com/qbittorrent/qBittorrent/wiki/
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB