diff options
-rw-r--r-- | README.md | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,12 +1,14 @@ -# docker-helloworld -A very simple dockerized `nc` webserver for testing docker setups. +# dummy-webserver -I use this image when I need a docker image in place for testing infrastructure. +A very simple dockerized `nc` webserver. I use this when I'm setting up +infrastructure and I want to test that networking is setup correctly. `nc` +listens to port 8000. -To run the image on port 8000: +To get going: ``` -$ docker run -d --name thornycrackers_helloworld -p 8000:8000 thornycrackers/helloworld +make build +make up ``` -Then you can browse to `localhost:8000` or curl it see it's output. +Then you can browse/curl `localhost:8000` to verify it's working. |