Skip to content

Instantly share code, notes, and snippets.

@thediveo
Created February 28, 2025 19:37
Show Gist options
  • Save thediveo/99e67916af7cc36139498e2e03c926d0 to your computer and use it in GitHub Desktop.
Save thediveo/99e67916af7cc36139498e2e03c926d0 to your computer and use it in GitHub Desktop.
Dockerizable filemanager noauth setup
// branding/custom.css
.ace_editor {
font-size: 100% !important;
}
#!/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