mirror of
https://github.com/okxlin/appstore.git
synced 2026-03-10 10:47:45 +08:00
feat:添加searxng到列表
This commit is contained in:
parent
ef0eda9bf7
commit
caf64f59e6
4
apps/searxng/2023.7.1-5720844f/.env.sample
Normal file
4
apps/searxng/2023.7.1-5720844f/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="searxng"
|
||||
PANEL_APP_PORT_HTTP="40032"
|
||||
DATA_PATH="./data"
|
||||
SEARXNG_EXTERNAL_URL="http://localhost:40032"
|
||||
24
apps/searxng/2023.7.1-5720844f/data.yml
Normal file
24
apps/searxng/2023.7.1-5720844f/data.yml
Normal file
@ -0,0 +1,24 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40032
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data folder path
|
||||
labelZh: 数据文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
- default: http://localhost:40032
|
||||
edit: true
|
||||
envKey: SEARXNG_EXTERNAL_URL
|
||||
labelEn: External URL
|
||||
labelZh: 外部访问地址
|
||||
required: true
|
||||
type: text
|
||||
20
apps/searxng/2023.7.1-5720844f/docker-compose.yml
Normal file
20
apps/searxng/2023.7.1-5720844f/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '3'
|
||||
services:
|
||||
searxng:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||
volumes:
|
||||
- "${DATA_PATH}:/etc/searxng"
|
||||
environment:
|
||||
- BASE_URL=${SEARXNG_EXTERNAL_URL}
|
||||
image: searxng/searxng:2023.7.1-5720844f
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
@ -5,7 +5,7 @@ title: 一个免费的互联网元聚合搜索引擎
|
||||
type: 建站
|
||||
description: 一个免费的互联网元聚合搜索引擎
|
||||
additionalProperties:
|
||||
key: SearXNG
|
||||
key: searxng
|
||||
name: SearXNG
|
||||
tags:
|
||||
- WebSite
|
||||
Loading…
Reference in New Issue
Block a user