From: Lorin Hochstein Date: Sun, 5 Feb 2017 01:15:31 +0000 (-0800) Subject: clear out old makefile stuff X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=be630e0fdf06bfe68727e4d2c13cb070660fbb77;p=ansiblebook.git clear out old makefile stuff --- diff --git a/ch13/Makefile b/ch13/Makefile index d505a28..4c88fe9 100644 --- a/ch13/Makefile +++ b/ch13/Makefile @@ -1,23 +1,5 @@ .PHONY: build start run stop clean -FLAGS=#--debug - -build: - ansible-container $(FLAGS) build - -run: - ansible-container run - -start: run - -stop: - ansible-container stop - -# Delete images -clean: - docker ps -a | awk 'NR!=1 { print $1 }' | xargs docker rm - docker images | awk 'NR>1 && /ch13.*/ {print $1":"$2}' | xargs docker rmi - # Generate self-signed certs for localhost ssl: certs/nginx.crt certs/nginx.key