Filebrowser updated, untested

This commit is contained in:
2024-07-26 20:24:58 -07:00
parent c459639ef8
commit e30812f6e8
5 changed files with 45 additions and 10 deletions
+16
View File
@@ -0,0 +1,16 @@
# filebrowser
Last Updated: Fri July 26, 2024 13:01:44 PDT
## Overview
Docker Hub: https://hub.docker.com/r/filebrowser/filebrowser
Project: https://filebrowser.org/
Installation: https://filebrowser.org/installation
Proxy Port: 80
Username: admin
Password: admin
## Description
This is a sample project.
+8
View File
@@ -0,0 +1,8 @@
{
"port": 80,
"baseURL": "",
"address": "",
"log": "stdout",
"database": "/database/filebrowser.db",
"root": "/srv"
}
+8 -10
View File
@@ -1,12 +1,10 @@
version: '3.8'
services:
filebrowser: filebrowser:
# https://filebrowser.org/installation image: ${FILEBROWSER_IMAGE:-filebrowser/filebrowser:latest}
# proxy to port 80 restart: unless-stopped
image: filebrowser/filebrowser
restart: always
#user: "33:33"
user: "1000:1000"
volumes: volumes:
- ./data/joomla-html:/srv - ${VOL_CONFIG_PATH:-./config}/filebrowser.json:/.filebrowser.json
- ./filebrowser/filebrowser.db:/database.db - ${VOL_PATH:-./data}/filebrowser/filebrowser.db:/database.db
security_opt: - ${VOL_PATH:-./data}/filebrowser-root:/srv
- no-new-privileges:true
+7
View File
@@ -0,0 +1,7 @@
version: '3.4'
services:
filebrowser:
extends:
file: ${COOKBOOK}/filebrowser/docker-compose.yml
service: filebrowser
+6
View File
@@ -0,0 +1,6 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# filebrowser
FILEBROWSER_IMAGE=filebrowser/filebrowser:latest
VOL_CONFIG_PATH=./config #HELP: configpath
VOL_PATH=./data #HELP: volpath