Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 594 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 594 Bytes

Hello World

Based on: crccheck/docker-hello-world

This is a simple image that just gives a response on port 8000.

$ docker images | grep hell
REPOSITORY               TAG       IMAGE ID        CREATED          VIRTUAL SIZE
mattmahoneyrh/hello-world <>         <>             <>                 <>

Sample Usage

Build image

$ build.sh

Start container

$ docker run -d --name os-demo -p 8080:8000 mattmahoneyrh/hello-world

Starting web server on port 8080

Curl Exmaple

$ curl localhost:8080
Hello World
...