Add Makefile to setup things

This commit is contained in:
ty kayn
2018-12-17 11:24:26 +01:00
committed by Thomas Citharel
parent ccc623bc31
commit 74ba3e0cb6
5 changed files with 41 additions and 5 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
init:
@bash docker/message.sh "start"
make start
start: stop
@bash docker/message.sh "starting MobiliZon with docker"
docker-compose up -d
@bash docker/message.sh "started"
stop:
@bash docker/message.sh "stopping MobiliZon"
docker-compose down
@bash docker/message.sh "stopped"
target: init