1
0

Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2024-05-19 12:12:51 +00:00
parent 974237f179
commit 2f206ef1a9
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME="filebrowser"
PANEL_APP_PORT_HTTP="40071"
MOUNT_PATH="./data/mnt"

View 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

View File

@@ -0,0 +1,8 @@
{
"port": 80,
"baseURL": "",
"address": "",
"log": "stdout",
"database": "/database/filebrowser.db",
"root": "/srv"
}

View File

View File

@@ -0,0 +1,21 @@
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"
user: "${UID}:${GID}"
image: filebrowser/filebrowser:v2.30.0
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true