diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f396c9e --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +.PHONY: all +all: deploy + +.PHONY: deploy +deploy: build serve + +.PHONY: setup +setup: + true + +.PHONY: build +build: + docker-compose build + +.PHONY: serve +serve: + docker-compose up -d + +.PHONY: clean +clean: + docker-compose down |
