← Todos os guias
File Browser
A free, open-source, self-hosted web UI for browsing, uploading, and managing files on a server -- a lightweight alternative to a full NAS OS when you just need remote file access.
Este guia foi elaborado a partir da documentação oficial do File Browser, ligada acima — verifique sempre lá os nomes exatos dos pacotes/versões antes de executar estes comandos num servidor de produção, uma vez que as versões da distribuição e do projeto mudam com o tempo.
1Run the File Browser container
docker run -d \ --name filebrowser \ --restart unless-stopped \ -p 8080:80 \ -v /my/own/files:/srv \ -v /my/own/fb-database:/database \ -v /my/own/fb-config:/config \ filebrowser/filebrowserReplace /my/own/files with the real host directory you want browsable -- it's mounted read-write, so anyone who logs in can modify it.
2Log in with the default credentials
http://<the-server's-ip>:8080Default login is admin / admin -- change the password immediately under Settings > Profile once logged in.