A static file server with directory indexing for Docker
458
A static file server with directory indexing for Docker. This is a docker wrapper for the Vercel's serve package.
serve helps you serve a static site, single page application or just a static file (no matter if on your device or on the local network). It also provides a neat interface for listing the directory's contents:

I needed a simple way to share files on my local network through http.
Do not use this on the internet without running it behind an authentication service.
version: "3.8"
services:
serve:
image: eldekyfin/serve
ports:
- 8080:8080
volumes:
- /shared/dir:/var/static
/var/static Directory to serve
Content type
Image
Digest
sha256:59f04515a…
Size
54.5 MB
Last updated
over 3 years ago
docker pull eldekyfin/serve