diff options
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,2 +1,12 @@ # docker-helloworld A very simple dockerized `nc` webserver for testing docker setups. + +I use this image when I need a docker image in place for testing infrastructure. + +To run the image on port 8000: + +``` +$ docker run -d --name thornycrackers_helloworld -p 8000:8000 thornycrackers/helloworld +``` + +Then you can browse to `localhost:8000` or curl it see it's output. |