feat:添加tinyfilemanager到列表

This commit is contained in:
okxlin 2024-10-13 17:11:07 +08:00
parent 40e121be55
commit d90648103f
7 changed files with 4386 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# Tiny File Manager
**TinyFileManager** 是一个基于 PHP 的轻量级文件管理器。它是一个简单、快速且小巧的单文件 PHP 应用,能够直接部署到服务器的任意文件夹中。支持多语言的网页应用程序,可通过网页浏览器在线存储、上传、编辑和管理文件和文件夹。
## 使用说明
默认用户密码: `admin/admin@123``user/12345`
可以通过编辑`index.php`文件修改

View File

@ -0,0 +1,19 @@
name: TinyFileManager
tags:
- 建站
title: 一个基于 PHP 的轻量级文件管理器
description: 一个基于 PHP 的轻量级文件管理器
additionalProperties:
key: tinyfilemanager
name: TinyFileManager
tags:
- WebSite
shortDescZh: 一个基于 PHP 的轻量级文件管理器
shortDescEn: A lightweight file manager based on PHP
type: website
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://tinyfilemanager.github.io
github: https://github.com/prasathmani/tinyfilemanager
document: https://github.com/prasathmani/tinyfilemanager/wiki

Binary file not shown.

After

Width:  |  Height:  |  Size: 672 B

View File

@ -0,0 +1,4 @@
CONTAINER_NAME="tinyfilemanager"
DATA_PATH="./data/data"
INDEX_PHP_PATH="./data/index.php"
PANEL_APP_PORT_HTTP=40304

View File

@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "40304"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "./data/data"
edit: true
envKey: DATA_PATH
labelEn: Data Path
labelZh: 数据路径
required: true
type: text
- default: "./data/index.php"
disabled: true
envKey: INDEX_PHP_PATH
labelEn: Index.php Path
labelZh: Index.php 路径
required: true
type: text

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,18 @@
services:
tinyfilemanager:
image: "tinyfilemanager/tinyfilemanager:master"
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
volumes:
- ${DATA_PATH}:/var/www/html/data
- ${INDEX_PHP_PATH}:/var/www/html/index.php
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true