feat: 应用商店升级到 v2 版本 (#91)

This commit is contained in:
zhengkunwang223
2023-05-18 18:25:00 +08:00
committed by GitHub
parent f29958aac0
commit a1b44954ba
525 changed files with 1807 additions and 3756 deletions
+24
View File
@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: 5244
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
required: true
rule: paramPort
type: number
- default: ./data/data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: ./data/mnt
edit: true
envKey: MOUNT_PATH
labelEn: Mount folder path
labelZh: 挂载文件夹路径
required: true
type: text
+24
View File
@@ -0,0 +1,24 @@
version: '3'
services:
alist:
container_name: ${CONTAINER_NAME}
restart: unless-stopped
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:5244"
volumes:
- "${DATA_PATH}:/opt/alist/data"
- "${MOUNT_PATH}:/mnt/data"
environment:
- PUID=0
- PGID=0
- UMASK=022
image: xhofe/alist:v3.16.3
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true
+24
View File
@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: 5244
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
required: true
rule: paramPort
type: number
- default: ./data/data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: ./data/mnt
edit: true
envKey: MOUNT_PATH
labelEn: Mount folder path
labelZh: 挂载文件夹路径
required: true
type: text
View File
+20
View File
@@ -0,0 +1,20 @@
name: alist
tags:
- 工具
title: 一个支持多存储的文件列表程序
type: 工具
description: 一个支持多存储的文件列表程序
additionalProperties:
key: alist
name: alist
tags:
- Tool
shortDescZh: 一个支持多存储的文件列表程序
shortDescEn: A file list program that supports multiple storage
type: tool
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://github.com/alist-org/alist
github: https://github.com/alist-org/alist
document: https://alist.nn.ci/zh/

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

-33
View File
@@ -1,33 +0,0 @@
{
"formFields": [
{
"type": "number",
"labelZh": "网页端口",
"labelEn": "WebUI Port",
"required": true,
"default": 5244,
"rule": "paramPort",
"envKey": "PANEL_APP_PORT_HTTP",
"edit": true
},
{
"type": "text",
"labelZh": "数据文件夹路径",
"labelEn": "Data folder path",
"required": true,
"default": "./data/data",
"envKey": "DATA_PATH",
"edit": true
},
{
"type": "text",
"labelZh": "挂载文件夹路径",
"labelEn": "Mount folder path",
"required": true,
"default": "./data/mnt",
"envKey": "MOUNT_PATH",
"edit": true
}
]
}