Processed apps directory via GitHub Actions
This commit is contained in:
@@ -11,7 +11,7 @@ services:
|
||||
- HTTPS_PROXY=${HTTP_PROXY}
|
||||
- HTTP_PROXY=${HTTP_PROXY:-}
|
||||
- NO_PROXY=${NO_PROXY:-}
|
||||
image: envyafish/byte-muse:1.10.1
|
||||
image: envyafish/byte-muse:1.10.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
- verificationCodeTimeout=10
|
||||
- appname=casdoor
|
||||
- authState=casdoor
|
||||
image: casbin/casdoor:v1.874.0
|
||||
image: casbin/casdoor:v1.875.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -9,7 +9,7 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- DOCKGE_STACKS_DIR=/opt/dockge/stacks
|
||||
image: louislam/dockge:1.4.2
|
||||
image: louislam/dockge:1.5.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -20,7 +20,7 @@ services:
|
||||
- /dozzle
|
||||
- healthcheck
|
||||
timeout: 30s
|
||||
image: amir20/dozzle:v8.12.0
|
||||
image: amir20/dozzle:v8.12.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -9,7 +9,7 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}?sslmode=disable
|
||||
image: getfider/fider:v0.24.0
|
||||
image: getfider/fider:v0.25.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
- database__client=mysql
|
||||
- mail__options__service=Email
|
||||
- mail__options__secure=true
|
||||
image: ghost:5.115.0
|
||||
image: ghost:5.115.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.130.3
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.131.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -52,7 +52,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.130.3
|
||||
image: ghcr.io/immich-app/immich-server:v1.131.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.130.3
|
||||
image: ghcr.io/immich-app/immich-server:v1.131.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.130.3
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.131.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -68,7 +68,7 @@ services:
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: ghcr.io/immich-app/immich-server:v1.130.3
|
||||
image: ghcr.io/immich-app/immich-server:v1.131.1
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -18,7 +18,7 @@ services:
|
||||
- TRUST_PROXY_HEADER=true
|
||||
- CASE_SENSITIVE_USERNAME=true
|
||||
- DB_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}
|
||||
image: svhd/logto:1.25.0
|
||||
image: svhd/logto:1.26.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
48
appstore/n8n/1.86.0/.env
Normal file
48
appstore/n8n/1.86.0/.env
Normal file
@@ -0,0 +1,48 @@
|
||||
# Postgres 服务 (前置检查)
|
||||
PANEL_POSTGRES_TYPE=postgresql
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
N8N_ROOT_PATH=/home/n8n
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=5678
|
||||
|
||||
# 编辑器基础URL [必填]
|
||||
N8N_EDITOR_BASE_URL=http://127.0.0.1:5678
|
||||
|
||||
# 数据库类型 [必填]
|
||||
DB_TYPE=postgresdb
|
||||
|
||||
# 数据库 主机地址
|
||||
DB_POSTGRESDB_HOST=127.0.0.1
|
||||
|
||||
# 数据库 端口
|
||||
DB_POSTGRESDB_PORT=5432
|
||||
|
||||
# 数据库 名称
|
||||
DB_POSTGRESDB_DATABASE=n8n
|
||||
|
||||
# 数据库 用户名
|
||||
DB_POSTGRESDB_USER=n8n
|
||||
|
||||
# 数据库 密码
|
||||
DB_POSTGRESDB_PASSWORD=
|
||||
|
||||
# 禁用UI [必填]
|
||||
N8N_DISABLE_UI=false
|
||||
|
||||
# 预览模式 [必填]
|
||||
N8N_PREVIEW_MODE=false
|
||||
|
||||
# 工作流模板 [必填]
|
||||
N8N_TEMPLATES_ENABLED=false
|
||||
|
||||
# 个性化问题询问 [必填]
|
||||
N8N_PERSONALIZATION_ENABLED=true
|
||||
|
||||
# 禁用API文档 [必填]
|
||||
N8N_PUBLIC_API_SWAGGERUI_DISABLED=false
|
||||
|
||||
# 禁用公共API [必填]
|
||||
N8N_PUBLIC_API_DISABLED=false
|
||||
|
||||
161
appstore/n8n/1.86.0/data.yml
Normal file
161
appstore/n8n/1.86.0/data.yml
Normal file
@@ -0,0 +1,161 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_POSTGRES_SERVICE
|
||||
required: true
|
||||
type: service
|
||||
default: postgresql
|
||||
envKey: PANEL_POSTGRES_TYPE
|
||||
labelZh: Postgres 服务 (前置检查)
|
||||
labelEn: Postgres Service (Pre-check)
|
||||
required: false
|
||||
type: apps
|
||||
values:
|
||||
- label: PostgreSQL
|
||||
value: postgresql
|
||||
- default: "/home/n8n"
|
||||
edit: true
|
||||
envKey: N8N_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 5678
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "http://127.0.0.1:5678"
|
||||
edit: true
|
||||
envKey: N8N_EDITOR_BASE_URL
|
||||
labelZh: 编辑器基础URL
|
||||
labelEn: Editor Base URL
|
||||
required: true
|
||||
type: text
|
||||
- default: "postgresdb"
|
||||
edit: true
|
||||
envKey: DB_TYPE
|
||||
labelZh: 数据库类型
|
||||
labelEn: Database type
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: PostgreSQL
|
||||
value: "postgresdb"
|
||||
- label: Sqlite
|
||||
value: "sqlite"
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: DB_POSTGRESDB_HOST
|
||||
labelZh: 数据库 主机地址
|
||||
labelEn: Database Host
|
||||
required: false
|
||||
type: text
|
||||
- default: 5432
|
||||
edit: true
|
||||
envKey: DB_POSTGRESDB_PORT
|
||||
labelZh: 数据库 端口
|
||||
labelEn: Database Port
|
||||
required: false
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "n8n"
|
||||
edit: true
|
||||
envKey: DB_POSTGRESDB_DATABASE
|
||||
labelZh: 数据库 名称
|
||||
labelEn: Database Name
|
||||
required: false
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: "n8n"
|
||||
edit: true
|
||||
envKey: DB_POSTGRESDB_USER
|
||||
labelZh: 数据库 用户名
|
||||
labelEn: Database Username
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: DB_POSTGRESDB_PASSWORD
|
||||
labelZh: 数据库 密码
|
||||
labelEn: Database Password
|
||||
random: true
|
||||
required: false
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: N8N_DISABLE_UI
|
||||
labelZh: 禁用UI
|
||||
labelEn: Disable UI
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 禁用
|
||||
value: "true"
|
||||
- label: 启用
|
||||
value: "false"
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: N8N_PREVIEW_MODE
|
||||
labelZh: 预览模式
|
||||
labelEn: Preview Mode
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 启用
|
||||
value: "true"
|
||||
- label: 禁用
|
||||
value: "false"
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: N8N_TEMPLATES_ENABLED
|
||||
labelZh: 工作流模板
|
||||
labelEn: Workflow Templates
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 启用
|
||||
value: "true"
|
||||
- label: 禁用
|
||||
value: "false"
|
||||
- default: "true"
|
||||
edit: true
|
||||
envKey: N8N_PERSONALIZATION_ENABLED
|
||||
labelZh: 个性化问题询问
|
||||
labelEn: Personalization Question
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 启用
|
||||
value: "true"
|
||||
- label: 禁用
|
||||
value: "false"
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: N8N_PUBLIC_API_SWAGGERUI_DISABLED
|
||||
labelZh: 禁用API文档
|
||||
labelEn: Disable API Documentation
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 禁用
|
||||
value: "true"
|
||||
- label: 启用
|
||||
value: "false"
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: N8N_PUBLIC_API_DISABLED
|
||||
labelZh: 禁用公共API
|
||||
labelEn: Disable Public API
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 禁用
|
||||
value: "true"
|
||||
- label: 启用
|
||||
value: "false"
|
||||
25
appstore/n8n/1.86.0/docker-compose.yml
Normal file
25
appstore/n8n/1.86.0/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
n8n:
|
||||
container_name: n8n
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- N8N_LISTEN_ADDRESS=0.0.0.0
|
||||
- N8N_PORT=5678
|
||||
- N8N_PROTOCOL=http
|
||||
- N8N_DIAGNOSTICS_ENABLED=false
|
||||
image: n8nio/n8n:1.86.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:5678
|
||||
restart: always
|
||||
volumes:
|
||||
- ${N8N_ROOT_PATH}/data:/home/node/.n8n
|
||||
23
appstore/n8n/1.86.0/scripts/init.sh
Normal file
23
appstore/n8n/1.86.0/scripts/init.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/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
|
||||
|
||||
DATA_DIR="$N8N_ROOT_PATH/data"
|
||||
|
||||
mkdir -p "$DATA_DIR"
|
||||
|
||||
chmod -R 777 "$DATA_DIR"
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
42
appstore/n8n/README.md
Normal file
42
appstore/n8n/README.md
Normal file
@@ -0,0 +1,42 @@
|
||||
# n8n
|
||||
|
||||
为技术团队提供安全的工作流自动化
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 简介
|
||||
|
||||
灵活的 AI 工作流程自动化
|
||||
|
||||
### 对于技术团队
|
||||
|
||||
以代码的精确度或拖放的速度进行构建。通过本地控制或云端便利进行托管。n8n 比任何其他工具都更能让您自由地实现多步骤 AI
|
||||
代理和集成应用程序。
|
||||
|
||||
## 特性
|
||||
|
||||
### 需要时编写代码
|
||||
|
||||
编写 JavaScript/Python、添加 npm 包或使用可视化界面
|
||||
|
||||
### AI-Native 平台
|
||||
|
||||
使用您自己的数据和模型,基于 LangChain 构建 AI 代理工作流程
|
||||
|
||||
### 完全控制
|
||||
|
||||
使用我们的公平代码许可证自行托管或使用我们的云产品
|
||||
|
||||
### 企业就绪
|
||||
|
||||
高级权限、SSO 和隔离部署
|
||||
|
||||
### 活跃社区
|
||||
|
||||
400 多个集成和 900 多个可立即使用的模板
|
||||
|
||||
---
|
||||
|
||||

|
||||
14
appstore/n8n/data.yml
Normal file
14
appstore/n8n/data.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: n8n
|
||||
name: n8n
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 为技术团队提供安全的工作流自动化
|
||||
shortDescEn: Secure Workflow Automation for Technical Teams
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://n8n.io/
|
||||
github: https://github.com/n8n-io/n8n/
|
||||
document: https://docs.n8n.io/
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user