A super light web server (just **113.2kb**)
345
A super light web server (just 113.2kb) with default static website which just say
Original source code is here: https://github.com/lipanski/docker-static-website
docker run --name httpd -d -p 8089:3000 httpd
Then access the web using: http://localhost:3000
Remmeber to replace ./some/local/path and your own ./httpd.conf flie
---
services:
webserver:
image: ledangvu/httpd:latest
restart: always
ports:
- "3000:3000"
volumes:
- ./some/local/path:/home/static
- ./httpd.conf:/home/static/httpd.conf:ro
Content type
Image
Digest
sha256:199488249…
Size
53.6 kB
Last updated
about 1 year ago
docker pull ledangvu/httpd