2023-07-29 15:16:09 +00:00
## Gtstef / filebrowser
2018-06-26 10:10:12 +00:00
2023-06-13 13:22:24 +00:00
**Note: Intended to be used in docker only.**
2018-04-23 21:42:52 +00:00
2023-06-13 13:22:24 +00:00
This fork makes the following significant changes to filebrowser for origin:
2023-06-15 01:08:09 +00:00
1. [x] Improves search to use index instead of filesystem.
2023-06-16 17:29:43 +00:00
- [x] Lightning fast
- [x] Realtime results as you type
2023-07-17 05:32:43 +00:00
- [x] Works with file type filter
2023-06-15 01:08:09 +00:00
1. [ ] Preview enhancements
2023-06-13 13:22:24 +00:00
- preview default view is constrained to files subwindow,
which can be toggled to fullscreen.
2023-07-29 15:16:09 +00:00
1. Improved and simplified GUI
-
2023-07-17 05:32:43 +00:00
1. [x] Updated version and dependencies
- [x] uses latest npm and node version
- [x] removes deprecated npm packages
2023-06-16 17:29:43 +00:00
- [x] Updates golang dependencies
2023-07-29 15:16:09 +00:00
1. [ ] Moved all configurations to filebrowser.json. no more flags or binary operations to db
2023-06-13 13:15:11 +00:00
## About
2018-04-23 21:42:52 +00:00
2023-07-29 15:16:09 +00:00
Filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app.
2018-04-23 21:42:52 +00:00
2023-06-13 13:15:11 +00:00
## Install
2018-04-23 21:42:52 +00:00
2023-06-13 13:15:11 +00:00
Using docker:
2018-04-23 21:42:52 +00:00
2023-06-15 01:08:09 +00:00
1. docker run:
2018-04-23 21:42:52 +00:00
2023-06-13 13:15:11 +00:00
```
2023-06-15 01:08:09 +00:00
docker run -it -v /path/to/folder:/srv -p 8080:80 gtstef/filebrowser:0.1.0
2023-06-13 13:15:11 +00:00
```
2018-04-23 21:42:52 +00:00
2023-06-13 13:15:11 +00:00
1. docker-compose:
- with local storage
2018-04-23 21:42:52 +00:00
2023-06-13 13:15:11 +00:00
```
version: '3.7'
services:
filebrowser:
volumes:
- '/path/to/folder:/srv'
#- './database/:/database/'
2023-07-29 15:16:09 +00:00
- './config.json:/.filebrowser.json'
2023-06-13 13:15:11 +00:00
ports:
- '8080:80'
image: gtstef/filebrowser:0.1.0
```
2020-06-18 15:54:37 +00:00
2023-06-13 13:15:11 +00:00
- with network share
2020-06-18 15:54:37 +00:00
2023-06-13 13:15:11 +00:00
```
version: '3.7'
services:
filebrowser:
volumes:
- 'nas:/srv'
2023-06-15 01:08:09 +00:00
#- './database/:/database/'
2023-06-13 13:15:11 +00:00
#- './config.json:/.filebrowser.json'
ports:
- '8080:80'
image: gtstef/filebrowser:0.1.0
volumes:
nas:
driver_opts:
type: cifs
o: "username=myusername,password=mypassword,rw"
device: "//fileshare/"
```
2018-04-23 21:42:52 +00:00
2023-06-13 13:15:11 +00:00
## Configuration
2018-04-23 21:42:52 +00:00
2023-07-29 15:16:09 +00:00
All configuration is now done via the filebrowser.json config file. This was chosen because it works best with a docker first use case.
Previously the primary way to configure filebrowser was via flags. But this quickly became cumbersome if you had many configurations to make
The other method to configure was via `filebrowser config` commands which would write configurations to a db if it existed already.
When considering