Sign inSign up

ledangvu/httpd

By ledangvu

Updated about 1 year ago

A super light web server (just **113.2kb**)

Image
Web servers
0

345

ledangvu/httpd repository overview

A super light web server (just 113.2kb) with default static website which just say

It works!

Original source code is here: https://github.com/lipanski/docker-static-website

To run this image using docker:

docker run --name httpd -d -p 8089:3000 httpd Then access the web using: http://localhost:3000

To run this image using docker compose

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

Tag summary

Content type

Image

Digest

sha256:199488249

Size

53.6 kB

Last updated

about 1 year ago

docker pull ledangvu/httpd