Hello World web server in under 2 MB
9.9K
This is a simple Docker image that just gives http responses on port 8000 (size = 1MB):
Starting a web server on port 80
$ docker run -d --rm --name web-test -p 80:8000 wahidh007/hello-world
You can now interact with this as if it were a dumb web server:
$ curl localhost
<xmp>
Hello World
...snip...
$ curl -I localhost
HTTP/1.0 200 OK
Content type
Image
Digest
sha256:0404ca69b…
Size
754.9 kB
Last updated
about 1 year ago
docker pull wahidh007/hello-world