# 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.