• Stars
    star
    204
  • Rank 191,019 (Top 4 %)
  • Language
    HTML
  • Created about 8 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A flask file server with an elegant frontend for browsing, uploading and streaming files

#flask-file-server

A flask file server with an elegant frontend for browsing, uploading and streaming files

screenshot

Build

docker build --rm -t maaydin/flask-file-server:latest .

Run

docker run -p 8000:8000 maaydin/flask-file-server

Params

FS_BIND = Param for bind address, default 0.0.0.0
FS_PORT = Param for server port, default 8000
FS_PATH = Param for serve path, default /tmp
FS_KEY = Param for authentication key as base64 encoded username:password, default none

docker run -p 8000:8000 -e FS_BIND=0.0.0.0 -e FS_PORT=8000 -e FS_PATH=/tmp -e FS_KEY=dGVzdDp0ZXN0 maaydin/flask-file-server