About Lightweight simple file drop and download server written in go and typescript for speed.
461
Lightweight is simple file drop and download server written in go and typescript for speed. It has basic user access control and audit logs.
docker-compose.yml
version: '3.8'
services:
lightspeed:
image: patilk234/lightspeed:latest
ports:
- "8080:8080"
volumes:
# mount host uploads directory into container
- /Volumes/wdblue/lightspeed:/data/uploads
restart: unless-stopped
environment:
# Path inside the container
- LIGHTSPEED_UPLOAD_DIR=/data/uploads
# optional
#- LIGHTSPEED_STATIC_DIR=/usr/local/share/lightspeed/web/static
docker run commad:
docker run -d \
--name lightspeed \
-p 8080:8080 \
-v /Volumes/wdblue/lightspeed:/data/uploads \
-e LIGHTSPEED_UPLOAD_DIR=/data/uploads \
--restart unless-stopped \
patilk234/lightspeed:latest
Screenshots: Dashboard Upload Page User Access Audit History Uploaded File
Content type
Image
Digest
sha256:6b9a3de51…
Size
39.8 MB
Last updated
about 1 year ago
docker pull patilk234/lightspeed