diff options
author | Cody Hiar <cody@hiar.ca> | 2021-03-18 10:38:28 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-03-18 10:38:28 -0600 |
commit | f6788a786d28f718eafb77773502a0d964402d23 (patch) | |
tree | 5031e9b1a0f0cd927a30c8ba05ca904bd7d4100a | |
parent | 4d61760345a34c3440dfcaccfbbf4c78e8b156cd (diff) |
-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. |