Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 861 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 861 Bytes

Lightweight static file server

publish container workflow publish executable workflow

Lightweight static file server serves static files.

Setup in docker

docker run --rm --name static-file-server \
  --publish 8080:8080 \
  --volume $PWD/data:/data \
  --env TZ="Asia/Kolkata" \
  --env BRAND_NAME="Lightweight Static File Server" \
  jkandasa/static-file-server:master

Binary execution

$ ./static-file-server-master-linux-amd64 -port 8080 -dir /data

Download