Skip to content

Latest commit

 

History

History

filebrowser

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Filebrowser

Filebrowser is a simple web-based filebrowser (file explorer) that you can use to share files with others or access volumes of other containers easily.

To run the container you need the following:

  • Port 80 exposed to the host as port 8080
  • Run in detached mode
  • Name the container filebrowser
  • Mount a locally created directory ./data inside the container at /srv
  • Mount the local file (which you must create first) ./filebrowser.db inside the container at /.database.db
  • Use image filebrowser/filebrowser

Consult their docs for more infos.

If everything was successful you can open the web-UI at http://localhost:8080 and login with admin and PW admin.

Bonus

Instead of the locally created ./data directory use a docker volume.

Solution

See here