diff options
author | Cody Hiar <thornycrackers@users.noreply.github.com> | 2018-11-12 12:24:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 12:24:46 -0700 |
commit | b19d00d2e7e423b1775deb8c45759f5611fb89d2 (patch) | |
tree | 60381a069ea4d1b82022a4f3d9a8b31da877d805 | |
parent | 7686d0ca2e637fd004e4f716f0ba10bbf9a24b88 (diff) |
Update README.md
-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. |