Created
February 28, 2025 19:37
-
-
Save thediveo/99e67916af7cc36139498e2e03c926d0 to your computer and use it in GitHub Desktop.
Dockerizable filemanager noauth setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// branding/custom.css | |
.ace_editor { | |
font-size: 100% !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export FB_DATABASE=./filebrowser.db | |
export FB_CONFIG=./filebrowser.yaml | |
rm ${FB_DATABASE} || true | |
rm ${FB_CONFIG} || true | |
filebrowser config init | |
filebrowser config set --auth.method=noauth | |
filebrowser users add admin "" | |
filebrowser config set --branding.name "foobar" \ | |
--branding.files "${PWD}/branding" \ | |
--branding.disableExternal | |
filebrowser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment