mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:添加tinyfilemanager到列表
This commit is contained in:
parent
40e121be55
commit
d90648103f
9
apps/tinyfilemanager/README.md
Normal file
9
apps/tinyfilemanager/README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Tiny File Manager
|
||||||
|
|
||||||
|
**TinyFileManager** 是一个基于 PHP 的轻量级文件管理器。它是一个简单、快速且小巧的单文件 PHP 应用,能够直接部署到服务器的任意文件夹中。支持多语言的网页应用程序,可通过网页浏览器在线存储、上传、编辑和管理文件和文件夹。
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
默认用户密码: `admin/admin@123` 和 `user/12345`,
|
||||||
|
|
||||||
|
可以通过编辑`index.php`文件修改
|
19
apps/tinyfilemanager/data.yml
Normal file
19
apps/tinyfilemanager/data.yml
Normal 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
|
BIN
apps/tinyfilemanager/logo.png
Normal file
BIN
apps/tinyfilemanager/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 672 B |
4
apps/tinyfilemanager/master/.env.sample
Normal file
4
apps/tinyfilemanager/master/.env.sample
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
CONTAINER_NAME="tinyfilemanager"
|
||||||
|
DATA_PATH="./data/data"
|
||||||
|
INDEX_PHP_PATH="./data/index.php"
|
||||||
|
PANEL_APP_PORT_HTTP=40304
|
24
apps/tinyfilemanager/master/data.yml
Normal file
24
apps/tinyfilemanager/master/data.yml
Normal 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
|
4312
apps/tinyfilemanager/master/data/index.php
Normal file
4312
apps/tinyfilemanager/master/data/index.php
Normal file
File diff suppressed because one or more lines are too long
18
apps/tinyfilemanager/master/docker-compose.yml
Normal file
18
apps/tinyfilemanager/master/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user