Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 526 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 526 Bytes

Docker Serve

A static file server with directory indexing for Docker.

Screenshot

Why I created this package

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 system.

How to Use it

Docker compose

version: "3.8"

services:
  serve:
    image: elDekyfin/serve
    ports:
      - 8080:8080
    volumes:
      - /path/to/dir:/var/static

Volumes

/var/static Directory to serve