3.3.3 • Published 4 years ago
node-file-manager-esm v3.3.3
For more info see https://www.npmjs.com/package/node-file-manager-esm

File Manager
File manager web server based on Node.js with Koa, Angular.js and Bootstrap, updated to use a recent Koa and be mount compatible and is rewritten to be an ECMAScript Module (or Babel). Has multi file upload. Reduced dependencies. Usable from cli.
Supported: ESM-importable, standalone, docker
Environment variables
These are relevant for the container
FM_PORT-- 5000 The server port to use, if no port param was given, triesFM_PORTthenPORTFM_SECURE-- Is off by default! Use BASIC-AUTH with the htpasswd of the path provided. To useFM_USERor--user, setFM_SECURE=trueFM_USER-- IfFM_SECUREis used (orFM_SECURE=true), users can be added manually.pwcan be a clear password or a password hash created byhtpasswd. It will ignore any htpasswd file fromFM_SECURE. ExampleFM_USER="adam:adam123\neve:eve123"FM_MAXSIZE-- 300 Set the max file size for uploads in MBFM_LOGGING-- Output logging info using just*resolves tofm:*and can be set as environment variable withDEBUG=fm:*as well.FM_LOGGING=trafficwill only showfm:trafficTo see all possible output, setDEBUG=*FM_FILTER-- "zip|tar.gz|7z|..." Important files to filter for. The pattern is seperated by|. Example: zip|mp4|txtFM_MIMEFILTER-- "video/|audio/|image/*" Only for file selection upload dialog in the web interface. Example:video/*|image/*FM_NAME-- "File Manager" Overwrite the web ui title
Generating htaccess, proxy, ...
For more details see:
https://www.npmjs.com/package/node-file-manager-esm
Volumes
Exposed are
/datafor the folder to use/logsfor the folder to save any logs to/securefor the folder where thehtpasswdfile is (to be used asFM_SECURE=/secure/htpasswd)
Use
\> docker run -p 5000:5000 -it --volume D:\:/data --name node-filemanager-esm bananaacid/docker-node-filemanager-esmChanges
- added support for big files (v3.2.0)
- upload progress and file updates for all connected clients (v3.2.0)
- max upload filesize (v3.2.0)
- handling of canceled files (v3.2.0)
- full standalone support (v3.2.0)
- relative paths support for
--directoryand--secure(v3.2.0)
- relative paths support for
- file renaming if error named file exists and alike (v3.3.1)
- adding users by commandline/env (v3.3.1)
- fixed env presented to docker to be FM_USER (v3.3.2)
- added compose file (v3.3.2)
- reducing docker image from 1GB to 211MB (v3.3.3)
docker-compose.yaml
version: '3.3'
services:
file-manager:
image: bananaacid/docker-node-filemanager-esm:latest
restart: unless-stopped
container_name: file-manager
hostname: file-manager
environment:
FM_FILTER: "zip|tar.gz|7z|7zip|tar|gz|tgz|tbz|tar.bz2|tar.bz|txt|md|doc|docx|otf|ppt|pptx|xls|xlsx|csv|indd|jpg|jpeg|heic|heif|png|ps|svg|ai|avi|mp4|mpg|wav|flac|mpeg|mov"
FM_MIMEFILTER: "video/*|audio/*|image/*"
FM_SECURE:
FM_USER:
FM_MAXSIZE: 300
FM_LOGGING: "*"
FM_NAME:
expose:
- "5000"
volumes:
- /data
- /logs
- /secure
networks:
filemanager: