Update
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
CONTAINER_NAME="qbittorrent"
|
||||
PANEL_APP_PORT_HTTP="40155"
|
||||
PEER_PORT_VALUE="40150"
|
||||
CACHE_PATH="./data/.cache"
|
||||
DOWNLOAD_PATH="./data/downloads"
|
||||
@@ -1,32 +0,0 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40155
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: WebUI Port
|
||||
labelZh: 网页端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 40150
|
||||
edit: true
|
||||
envKey: PEER_PORT_VALUE
|
||||
labelEn: Peer Port
|
||||
labelZh: BT端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/.cache
|
||||
edit: true
|
||||
envKey: CACHE_PATH
|
||||
labelEn: Cache folder path
|
||||
labelZh: 缓存文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ./data/downloads
|
||||
edit: true
|
||||
envKey: DOWNLOAD_PATH
|
||||
labelEn: Download folder path
|
||||
labelZh: 下载文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
@@ -1,75 +0,0 @@
|
||||
[General]
|
||||
ported_to_new_savepath_system=true
|
||||
|
||||
[AutoRun]
|
||||
enabled=false
|
||||
program=
|
||||
|
||||
[Core]
|
||||
AutoDeleteAddedTorrentFile=Never
|
||||
|
||||
[LegalNotice]
|
||||
Accepted=true
|
||||
|
||||
[Network]
|
||||
Cookies=@Invalid()
|
||||
|
||||
[Preferences]
|
||||
Advanced\IgnoreLimitsLAN=true
|
||||
Advanced\RecheckOnCompletion=false
|
||||
Advanced\trackerPort=9000
|
||||
Bittorrent\DHT=false
|
||||
Bittorrent\LSD=false
|
||||
Bittorrent\MaxConnecs=-1
|
||||
Bittorrent\MaxConnecsPerTorrent=-1
|
||||
Bittorrent\MaxUploads=-1
|
||||
Bittorrent\MaxUploadsPerTorrent=-1
|
||||
Bittorrent\PeX=false
|
||||
Bittorrent\uTP_rate_limited=false
|
||||
Connection\PortRangeMin=
|
||||
Connection\ResolvePeerCountries=true
|
||||
Downloads\SavePath=/data/downloads
|
||||
Downloads\ScanDirsV2=@Variant(\0\0\0\x1c\0\0\0\0)
|
||||
Downloads\StartInPause=true
|
||||
DynDNS\DomainName=changeme.dyndns.org
|
||||
DynDNS\Enabled=false
|
||||
DynDNS\Password=
|
||||
DynDNS\Service=0
|
||||
DynDNS\Username=
|
||||
General\Locale=zh
|
||||
MailNotification\email=
|
||||
MailNotification\enabled=false
|
||||
MailNotification\password=
|
||||
MailNotification\req_auth=true
|
||||
MailNotification\req_ssl=false
|
||||
MailNotification\sender=qBittorrent_notification@example.com
|
||||
MailNotification\smtp_server=smtp.changeme.com
|
||||
MailNotification\username=
|
||||
Queueing\QueueingEnabled=false
|
||||
WebUI\Address=*
|
||||
WebUI\AlternativeUIEnabled=false
|
||||
WebUI\AuthSubnetWhitelist=@Invalid()
|
||||
WebUI\AuthSubnetWhitelistEnabled=false
|
||||
WebUI\BanDuration=3600
|
||||
WebUI\CSRFProtection=false
|
||||
WebUI\ClickjackingProtection=true
|
||||
WebUI\CustomHTTPHeaders=
|
||||
WebUI\CustomHTTPHeadersEnabled=false
|
||||
WebUI\Enabled=true
|
||||
WebUI\HTTPS\CertificatePath=
|
||||
WebUI\HTTPS\Enabled=false
|
||||
WebUI\HTTPS\KeyPath=
|
||||
WebUI\HostHeaderValidation=true
|
||||
WebUI\LocalHostAuth=true
|
||||
WebUI\MaxAuthenticationFailCount=5
|
||||
WebUI\Port=
|
||||
WebUI\RootFolder=
|
||||
WebUI\SecureCookie=true
|
||||
WebUI\ServerDomains=*
|
||||
WebUI\SessionTimeout=3600
|
||||
WebUI\UseUPnP=true
|
||||
WebUI\Username=admin
|
||||
|
||||
[RSS]
|
||||
AutoDownloader\DownloadRepacks=true
|
||||
AutoDownloader\SmartEpisodeFilter=s(\\d+)e(\\d+), (\\d+)x(\\d+), "(\\d{4}[.\\-]\\d{1,2}[.\\-]\\d{1,2})", "(\\d{1,2}[.\\-]\\d{1,2}[.\\-]\\d{4})"
|
||||
@@ -1,27 +0,0 @@
|
||||
services:
|
||||
qbittorrent:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
environment:
|
||||
- UID=1000
|
||||
- GID=1000
|
||||
- PEER_PORT=${PEER_PORT_VALUE}
|
||||
- WEB_PORT=${PANEL_APP_PORT_HTTP}
|
||||
ports:
|
||||
- "${PEER_PORT_VALUE}:${PEER_PORT_VALUE}"
|
||||
- "${PEER_PORT_VALUE}:${PEER_PORT_VALUE}/udp"
|
||||
- "${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}"
|
||||
volumes:
|
||||
- "./data/.config:/data/.config"
|
||||
- "./data/.local:/data/.local"
|
||||
- "${CACHE_PATH}:/data/.cache"
|
||||
- "${DOWNLOAD_PATH}:/data/downloads"
|
||||
image: "jarylc/qbittorrent:4.3.5_1.2.14"
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
@@ -21,7 +21,7 @@ services:
|
||||
image: "jarylc/qbittorrent:latest"
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user