Init
BIN
data/branding/img/icons/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
data/branding/img/icons/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 328 KiB |
BIN
data/branding/img/icons/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
9
data/branding/img/icons/browserconfig.xml
Normal 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>
|
||||||
BIN
data/branding/img/icons/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
data/branding/img/icons/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
data/branding/img/icons/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
data/branding/img/icons/gafiled.png
Normal file
|
After Width: | Height: | Size: 918 KiB |
BIN
data/branding/img/icons/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
15
data/branding/img/icons/safari-pinned-tab.svg
Normal 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 |
19
data/branding/img/icons/site.webmanifest
Normal 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
|
After Width: | Height: | Size: 2.7 MiB |
52783
data/branding/logo.svg
Executable file
|
After Width: | Height: | Size: 2.7 MiB |
8
data/settings.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"port": 80,
|
||||||
|
"baseURL": "",
|
||||||
|
"address": "",
|
||||||
|
"log": "stdout",
|
||||||
|
"database": "/database.db",
|
||||||
|
"root": "/srv"
|
||||||
|
}
|
||||||
17
docker-compose.yml
Normal 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
|
||||||