发布应用 ikaros

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
新疆萌森软件开发工作室 2025-01-22 12:53:21 +08:00
parent 6239a51a74
commit c1f6f31b90
12 changed files with 125 additions and 0 deletions

1
.github/README.md vendored
View File

@ -78,6 +78,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/gitea/logo.png" width="22"/> | Gitea Runner | https://gitea.io/ | 【Runner】私有、快速、可靠的 DevOps 平台 | Gitea |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/halo/logo.png" width="22"/> | Halo | https://halo.run/ | 强大易用的开源建站工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/homarr/logo.png" width="22"/> | Homarr | https://homarr.dev/ | 一个时尚、现代化的仪表板 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/ikaros/logo.png" width="22"/> | ikaros | https://github.com/Suwmlee/ikaros/ | 打通下载软件与媒体服务,安心享受影片 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/iframely/logo.png" width="22"/> | Iframely | https://iframely.com/ | 响应式 Web 嵌入和 URL 元的 Iframely API | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich | https://immich.app/ | 【完整版本】高性能自托管照片和视频管理解决方案 | Immich |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich-No-Machine | https://immich.app/ | 【无机器学习】高性能自托管照片和视频管理解决方案,适用于性能较差机器使用 | Immich |

View File

@ -73,6 +73,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/gitea/logo.png" width="22"/> | Gitea Runner | https://gitea.io/ | 【Runner】私有、快速、可靠的 DevOps 平台 | Gitea |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/halo/logo.png" width="22"/> | Halo | https://halo.run/ | 强大易用的开源建站工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/homarr/logo.png" width="22"/> | Homarr | https://homarr.dev/ | 一个时尚、现代化的仪表板 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/ikaros/logo.png" width="22"/> | ikaros | https://github.com/Suwmlee/ikaros/ | 打通下载软件与媒体服务,安心享受影片 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/iframely/logo.png" width="22"/> | Iframely | https://iframely.com/ | 响应式 Web 嵌入和 URL 元的 Iframely API | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich | https://immich.app/ | 【完整版本】高性能自托管照片和视频管理解决方案 | Immich |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/immich/logo.png" width="22"/> | Immich-No-Machine | https://immich.app/ | 【无机器学习】高性能自托管照片和视频管理解决方案,适用于性能较差机器使用 | Immich |

View File

@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: "/home/ikaros"
edit: true
envKey: IKAROS_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 12346
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number

View File

@ -0,0 +1,25 @@
networks:
1panel-network:
external: true
services:
ikaros:
image: suwmlee/ikaros:2.6.1
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:12346
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${IKAROS_ROOT_PATH}/media:/media
- ${IKAROS_ROOT_PATH}/data:/app/data
environment:
- PUID=0
- PGID=0
- TZ=Asia/Shanghai

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

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

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

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

19
apps/ikaros/README.md Normal file
View File

@ -0,0 +1,19 @@
# ikaros
打通下载软件与媒体服务,安心享受影片
![ikaros](https://file.lifebus.top/imgs/ikaros_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)
## 简介
+ 批量软/硬链接
+ 批量修改文件名,优化剧集名及自定义
+ JAV刮削及自定义
+ 自动清理关联的软/硬链接及种子文件
+ 托管(忘记这款软件,安心看片)
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/ikaros/data.yml Normal file
View File

@ -0,0 +1,14 @@
additionalProperties:
key: ikaros
name: ikaros
tags:
- WebSite
- Local
shortDescZh: 打通下载软件与媒体服务,安心享受影片
shortDescEn: Connect download software and media services, enjoy movies with peace of mind
type: website
crossVersionUpdate: true
limit: 0
website: https://github.com/Suwmlee/ikaros/
github: https://github.com/Suwmlee/ikaros/
document: https://github.com/Suwmlee/ikaros/

BIN
apps/ikaros/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB