mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 14:56:58 +08:00
feat: 新增 filebrowser (#673)
This commit is contained in:
parent
f4fa2951e0
commit
38bed80df0
17
apps/filebrowser/2.26.0/data.yml
Normal file
17
apps/filebrowser/2.26.0/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40071
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: HTTP Port
|
||||
labelZh: HTTP端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/mnt
|
||||
edit: true
|
||||
envKey: MOUNT_PATH
|
||||
labelEn: Mount folder path
|
||||
labelZh: 挂载文件夹路径
|
||||
required: true
|
||||
type: text
|
8
apps/filebrowser/2.26.0/data/.filebrowser.json
Normal file
8
apps/filebrowser/2.26.0/data/.filebrowser.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"port": 80,
|
||||
"baseURL": "",
|
||||
"address": "",
|
||||
"log": "stdout",
|
||||
"database": "/database/filebrowser.db",
|
||||
"root": "/srv"
|
||||
}
|
0
apps/filebrowser/2.26.0/data/database.db
Normal file
0
apps/filebrowser/2.26.0/data/database.db
Normal file
19
apps/filebrowser/2.26.0/docker-compose.yml
Normal file
19
apps/filebrowser/2.26.0/docker-compose.yml
Normal file
@ -0,0 +1,19 @@
|
||||
version: '3'
|
||||
services:
|
||||
filebrowser:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:80"
|
||||
volumes:
|
||||
- "${MOUNT_PATH}:/srv"
|
||||
- "./data/database.db:/database.db"
|
||||
- "./data/.filebrowser.json:/.filebrowser.json"
|
||||
image: filebrowser/filebrowser:v2.26.0
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
21
apps/filebrowser/README.md
Normal file
21
apps/filebrowser/README.md
Normal file
@ -0,0 +1,21 @@
|
||||
# 使用说明
|
||||
|
||||
- 默认账户密码
|
||||
|
||||
```
|
||||
username:admin
|
||||
password:admin
|
||||
```
|
||||
|
||||
# filebrowser
|
||||
|
||||
**filebrowser** 提供了指定目录下的文件管理界面,可以用来上传、删除、预览、重命名和编辑文件。它允许创建多个用户,每个用户可以有自己的目录。它可以用作独立的应用程序。
|
||||
|
||||
## 主要功能:
|
||||
|
||||
- **文件管理**:浏览文件和文件夹,创建、复制、移动和删除文件,以及创建新文件夹。
|
||||
- **文件预览**:预览文本文件、图像、视频和其他常见文件格式,方便快速查看内容。
|
||||
- **文件编辑**:对文本文件进行编辑,例如代码文件(支持语法高亮)、配置文件等。
|
||||
- **文件分享**:生成链接或共享码,以便他人访问特定文件或文件夹。
|
||||
- **用户认证和权限控制**:可以设置用户账户、权限和访问控制,确保文件的安全性和隐私性。
|
||||
- **多平台支持**:可以在不同的操作系统上部署和运行,例如 Linux、Windows 和 macOS。
|
20
apps/filebrowser/data.yml
Normal file
20
apps/filebrowser/data.yml
Normal file
@ -0,0 +1,20 @@
|
||||
name: File Browser
|
||||
tags:
|
||||
- 实用工具
|
||||
title: 网页文件浏览器
|
||||
type: 实用工具
|
||||
description: 网页文件浏览器
|
||||
additionalProperties:
|
||||
key: filebrowser
|
||||
name: File Browser
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 网页文件浏览器
|
||||
shortDescEn: Web File Browser
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://filebrowser.org/
|
||||
github: https://github.com/filebrowser/filebrowser
|
||||
document: https://filebrowser.org/
|
BIN
apps/filebrowser/logo.png
Normal file
BIN
apps/filebrowser/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
Loading…
Reference in New Issue
Block a user