aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 5b92cb51f971976cc06766dd0544dded2feec8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
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.