File Manager that runs on Docker with better UI/UX
- Create Buckets and organize files
- Permissions - ( Public / Private)
- Loadbalancer with NGINX
- Host Static Sites
- SSL with Letsencrypt
- Create a file
docker-compose.yml
with the following contents
version: "3"
services:
app:
image: aroliant/felix:latest
restart: always
ports:
- 80:80
- 3000:3000
- 443:443
environment:
- NODE_ENV=production
volumes:
- ./data:/data
- Run the App
docker-compose up
Note : Use docker-compose up -d
to run in detached mode
- Backup to S3/GCP or FTP
- File Listing
- API Support
- Connect and browse via FTP, Amazon S3 ( Ignoring GCP as it has better UI )
- Scalable