commit | 488482b81a6598754f520817957fcbe171168abd | [log] [tgz] |
---|---|---|
author | Tony Mack <tony.mack@gmail.com> | Tue May 10 17:10:09 2016 +0000 |
committer | Tony Mack <tony.mack@gmail.com> | Tue May 10 17:10:09 2016 +0000 |
tree | 90c7559a61d3392c7a6b6bda45c953d5840c2d77 | |
parent | 81b1e7fee5601161ff38e66f950410f15d15949d [diff] [blame] |
initial checkin
diff --git a/containers/nagios/Makefile b/containers/nagios/Makefile new file mode 100644 index 0000000..0c6cb32 --- /dev/null +++ b/containers/nagios/Makefile
@@ -0,0 +1,12 @@ +.PHONY: build + build: ; docker build --rm -t xosproject/nagios . + +.PHONY: run + run: ; docker run -d --name xosproject_nagios -p 8001:80 -t xosproject/nagios + +.PHONY: stop + stop: ; docker stop xosproject_nagios + +.PHONY: rm + rm: ; docker rm xosproject_nagios +