aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2021-03-18 10:38:28 -0600
committerCody Hiar <cody@hiar.ca>2021-03-18 10:38:28 -0600
commitf6788a786d28f718eafb77773502a0d964402d23 (patch)
tree5031e9b1a0f0cd927a30c8ba05ca904bd7d4100a
parent4d61760345a34c3440dfcaccfbbf4c78e8b156cd (diff)
Update READMEHEADmaster
-rw-r--r--README.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/README.md b/README.md
index 5b92cb5..70a1666 100644
--- a/README.md
+++ b/README.md
@@ -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.