File Browser - Web-based file manager
Everything you need to deploy Filebrowser with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Filebrowser up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Filebrowser with:
blastdock init filebrowser
Interactive mode:
blastdock init filebrowser -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Filebrowser installation with these configuration options.
Web interface port
Admin username
Admin password
Complete Docker Compose configuration for Filebrowser deployment.
version: '3.8'
services:
filebrowser:
image: filebrowser/filebrowser:latest
container_name: {{ project_name }}_filebrowser
restart: unless-stopped
ports:
- "80"
environment:
0: FB_BASEURL=
volumes:
- /srv
- /config
networks:
- filebrowser_network
volumes:
filebrowser_data:
driver: local
filebrowser_config:
driver: local
networks:
filebrowser_network:
driver: bridge