feat: add firecrawl and vane applications, fix lxserver form config

首先新增Firecrawl和Vane两款应用,包含完整的应用配置、docker-compose编排、说明文档以及logo资源;同时修复了lxserver时区配置项中多余的rule参数。
This commit is contained in:
arch3rPro
2026-05-17 17:52:54 +08:00
parent 87bc4e7f86
commit e98811cd04
28 changed files with 705 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
additionalProperties:
formFields:
- default: 3000
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Web Port
labelZh: Web 端口
required: true
rule: paramPort
type: number
- default: ""
edit: true
envKey: SEARXNG_API_URL
labelEn: SearXNG API URL (Optional, leave empty to use built-in)
labelZh: SearXNG API 地址(可选,留空则使用内置)
required: false
rule: paramExtUrl
type: text
+19
View File
@@ -0,0 +1,19 @@
services:
vane:
image: itzcrazykns1337/vane:latest
container_name: ${CONTAINER_NAME}
restart: always
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
volumes:
- ./data:/home/vane/data
environment:
- TZ=Asia/Shanghai
- SEARXNG_API_URL=${SEARXNG_API_URL}
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true