This commit is contained in:
2024-01-22 15:14:00 +08:00
commit abd1261150
15 changed files with 105634 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 918 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="966.000000pt" height="966.000000pt" viewBox="0 0 966.000000 966.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,966.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M0 4825 l0 -3735 4830 0 4830 0 0 3735 0 3735 -4830 0 -4830 0 0
-3735z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 603 B

View File

@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

52783
data/branding/img/logo.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 2.7 MiB

52783
data/branding/logo.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 2.7 MiB

8
data/settings.json Normal file
View File

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

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3'
services:
file-browser:
restart: always
image: filebrowser/filebrowser:latest
container_name: filebrowser
user: 1000:1000
ports:
- 8040:80
volumes:
- /media/share:/srv
- ./data/filebrowser.db:/database.db
- ./data/settings.json:/.filebrowser.json
- ./data/gafiled.png:/config/logo.png
- ./data/branding:/branding
security_opt:
- no-new-privileges:true