aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2018-11-12 19:19:50 +0000
committerCody Hiar <codyfh@gmail.com>2018-11-12 19:19:50 +0000
commit7686d0ca2e637fd004e4f716f0ba10bbf9a24b88 (patch)
treee1ea89197e727d6e5462f9f8e52aa1271882f9cd
parentc14a85a4eec42178469b5f410d7e4c133431fa52 (diff)
Initial commit
-rw-r--r--Dockerfile10
-rw-r--r--Makefile22
-rw-r--r--README.md2
-rw-r--r--index.html12
-rwxr-xr-xstartup.sh1
5 files changed, 46 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..f8581c1
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+FROM busybox
+
+MAINTAINER Cody Hiar <codyfh@gmail.com
+
+ADD index.html /opt/index.html
+ADD startup.sh /opt/startup.sh
+
+EXPOSE 8000
+
+CMD /opt/startup.sh
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2d5833e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,22 @@
+.PHONY: build
+
+CONTAINERNAME=thornycrackers_helloworld
+IMAGENAME=thornycrackers/helloworld
+
+help:
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
+
+build: ## Build the image
+ docker build -t $(IMAGENAME) .
+
+up: build ## Run the container
+ docker run -dP --name $(CONTAINERNAME) $(IMAGENAME)
+
+down: ## Stop the container
+ docker stop $(CONTAINERNAME) 2> /dev/null || echo 'No container to stop'
+
+clean: down ## Remove the container
+ docker rm $(CONTAINERNAME) 2> /dev/null || echo 'No container to remove'
+
+push: ## Push the container to dockerhub
+ docker push $(IMAGENAME)
diff --git a/README.md b/README.md
index 852b208..be27b71 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,2 @@
# docker-helloworld
-A very simple docker example
+A very simple dockerized `nc` webserver for testing docker setups.
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..2738979
--- /dev/null
+++ b/index.html
@@ -0,0 +1,12 @@
+HTTP/1.1 200 OK
+Content-Type: text/html; charset=UTF-8
+Server: netcat
+
+
+
+ _ _ _ _ _
+ | |__ ___| | | ___ __ _____ _ __| | __| |
+ | '_ \ / _ \ | |/ _ \ \ \ /\ / / _ \| '__| |/ _` |
+ | | | | __/ | | (_) | \ V V / (_) | | | | (_| |
+ |_| |_|\___|_|_|\___/ \_/\_/ \___/|_| |_|\__,_|
+
diff --git a/startup.sh b/startup.sh
new file mode 100755
index 0000000..2230eac
--- /dev/null
+++ b/startup.sh
@@ -0,0 +1 @@
+while true ; do nc -l -p 8000 < /opt/index.html ; done