发布应用 Jackett

This commit is contained in:
ms
2026-01-15 15:59:04 +08:00
parent 55dd8e4e1d
commit 4ab97df5db
12 changed files with 131 additions and 0 deletions
+1
View File
@@ -97,6 +97,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich-Server | https://immich.app/ | 【主服务模块】高性能自托管照片和视频管理解决方案,适用于远端数据库,远端机器学习 | Immich |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich-Machine-Learning | https://immich.app/ | 【机器学习模块】高性能自托管照片和视频管理解决方案,适用于作为远端机器学习使用 | Immich |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/iyuu-plus/logo.png" width="22"/> | IYUU Plus | https://doc.iyuu.cn/ | 基于特征码的索引工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jackett/logo.png" width="22"/> | Jackett | https://github.com/Jackett/Jackett/ | API支持您最喜爱的种子追踪器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/iycms/logo.png" width="22"/> | 爱影CMS | https://www.iycms.com/ | 高性能高并发永久免费影视CMS | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jellyfin/logo.png" width="22"/> | Jellyfin | https://jellyfin.org/ | 自由软件媒体系统 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jellyseerr/logo.png" width="22"/> | Jellyseerr | https://docs.jellyseerr.dev/ | 满足您所有媒体需求的一站式平台 | |
+1
View File
@@ -92,6 +92,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich-Server | https://immich.app/ | 【主服务模块】高性能自托管照片和视频管理解决方案,适用于远端数据库,远端机器学习 | Immich |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich-Machine-Learning | https://immich.app/ | 【机器学习模块】高性能自托管照片和视频管理解决方案,适用于作为远端机器学习使用 | Immich |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/iyuu-plus/logo.png" width="22"/> | IYUU Plus | https://doc.iyuu.cn/ | 基于特征码的索引工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jackett/logo.png" width="22"/> | Jackett | https://github.com/Jackett/Jackett/ | API支持您最喜爱的种子追踪器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/iycms/logo.png" width="22"/> | 爱影CMS | https://www.iycms.com/ | 高性能高并发永久免费影视CMS | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jellyfin/logo.png" width="22"/> | Jellyfin | https://jellyfin.org/ | 自由软件媒体系统 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/jellyseerr/logo.png" width="22"/> | Jellyseerr | https://docs.jellyseerr.dev/ | 满足您所有媒体需求的一站式平台 | |
+17
View File
@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: "/home/jackett"
edit: true
envKey: JACKETT_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 9117
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
+25
View File
@@ -0,0 +1,25 @@
networks:
1panel-network:
external: true
services:
jackett:
image: linuxserver/jackett:0.24.850
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:9117
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${JACKETT_ROOT_PATH}/config:/config
- ${JACKETT_ROOT_PATH}/downloads:/downloads
environment:
- TZ=Asia/Shanghai
- PUID=1000
- PGID=1000
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+24
View File
@@ -0,0 +1,24 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
# setup-2 create dir
mkdir -p "$JACKETT_ROOT_PATH"
mkdir -p "$JACKETT_ROOT_PATH/config"
mkdir -p "$JACKETT_ROOT_PATH/downloads"
chown -R 1000:1000 "$JACKETT_ROOT_PATH"
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
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+16
View File
@@ -0,0 +1,16 @@
# Jackett
支持您喜爱的种子追踪器 API
![Jackett](https://file.lifebus.top/imgs/jackett_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
聚合索引器,支持您喜爱的种子追踪器 API
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
![Ms Studio](https://analytics.lifebus.top/p/wJix5nI1W)
+16
View File
@@ -0,0 +1,16 @@
additionalProperties:
key: jackett
name: Jackett
tags:
- WebSite
- Local
shortDescZh: API支持您最喜爱的种子追踪器
shortDescEn: API Support for your favorite torrent trackers
type: website
crossVersionUpdate: true
limit: 0
website: https://github.com/Jackett/Jackett/
github: https://github.com/Jackett/Jackett/
document: https://github.com/Jackett/Jackett/
architectures:
- amd64
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB