Skip to content

jkandasa/static-file-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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