filebrowser/README.md

75 lines
1.7 KiB
Markdown
Raw Normal View History

2023-06-15 01:08:09 +00:00
## Gtstef fork of filebrowser
2023-06-13 13:22:24 +00:00
**Note: Intended to be used in docker only.**
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.
- [x] lightning fast
- [ ] realtime results as you type
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-06-15 01:08:09 +00:00
1. [ ] Updated node version and dependencies
- [ ] uses latest npm and node version
- [ ] removes deprecated npm packages
1. [ ] Improved routing
2023-06-13 13:22:24 +00:00
- fixed bugs in original version
2023-06-15 01:08:09 +00:00
1. [ ] Added authentication type
2023-06-13 13:22:24 +00:00
- Using bearer token with remote authentication server
## About
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.
## Install
Using docker:
2023-06-15 01:08:09 +00:00
1. docker run:
```
2023-06-15 01:08:09 +00:00
docker run -it -v /path/to/folder:/srv -p 8080:80 gtstef/filebrowser:0.1.0
```
1. docker-compose:
- with local storage
```
version: '3.7'
services:
filebrowser:
volumes:
- '/path/to/folder:/srv'
#- './database/:/database/'
#- './config.json:/.filebrowser.json'
ports:
- '8080:80'
image: gtstef/filebrowser:0.1.0
```
- with network share
```
version: '3.7'
services:
filebrowser:
volumes:
- 'nas:/srv'
2023-06-15 01:08:09 +00:00
#- './database/:/database/'
#- './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/"
```
## Configuration