This commit is contained in:
Milos Stojanovic
2023-01-30 19:54:30 +01:00
parent b07baf7efd
commit 6fa3cdcf48

View File

@@ -19,7 +19,6 @@ If allowed, users can download multiple files or folders at once.
File upload supports drag&drop, progress bar, pause and resume. Upload is chunked so you should be able to upload large files regardless of your server's configuration. File upload supports drag&drop, progress bar, pause and resume. Upload is chunked so you should be able to upload large files regardless of your server's configuration.
## Features & Goals ## Features & Goals
- Multiple storage adapters (Local, FTP, Amazon S3, Dropbox, DO Spaces, Azure Blob and many others via [Flysystem](https://github.com/thephpleague/flysystem)) - Multiple storage adapters (Local, FTP, Amazon S3, Dropbox, DO Spaces, Azure Blob and many others via [Flysystem](https://github.com/thephpleague/flysystem))
- Multiple auth adapters with roles and permissions (Store users in json file, database or use WordPress) - Multiple auth adapters with roles and permissions (Store users in json file, database or use WordPress)
@@ -39,7 +38,10 @@ This is read-only demo with guest account enabled
- you can log in as john/john to see John's private files - you can log in as john/john to see John's private files
- or jane/jane as readonly + download user. - or jane/jane as readonly + download user.
Rut it with docker ## Docker
Check out [the official docker image](https://hub.docker.com/r/filegator/filegator) with instructions on how to use it
Docker quick start:
``` ```
docker run -p 8080:8080 -d filegator/filegator docker run -p 8080:8080 -d filegator/filegator
visit: http://127.0.0.1:8080 login as admin/admin123 visit: http://127.0.0.1:8080 login as admin/admin123
@@ -49,7 +51,6 @@ visit: http://127.0.0.1:8080 login as admin/admin123
- Symlinks are not supported by the underlying [Flysystem](https://flysystem.thephpleague.com/v1/docs/adapter/local/) - Symlinks are not supported by the underlying [Flysystem](https://flysystem.thephpleague.com/v1/docs/adapter/local/)
- File permission operations are not supported (chmod/chown) - File permission operations are not supported (chmod/chown)
## Why Open Source on GitHub? ## Why Open Source on GitHub?
There are several reasons why we switched to open source model and GitHub. There are several reasons why we switched to open source model and GitHub.
@@ -63,8 +64,6 @@ Basically, we wanted to increase:
At the end, the more people who can see and test a set of code, the more likely any flaws will be caught and fixed quickly. At the end, the more people who can see and test a set of code, the more likely any flaws will be caught and fixed quickly.
## Show your support ## Show your support
- Please star this repository on [GitHub](https://github.com/filegator/filegator/stargazers) if this project helped you! - Please star this repository on [GitHub](https://github.com/filegator/filegator/stargazers) if this project helped you!