Created docker script

I created a docker script to install and run the project.
This commit is contained in:
Steven Bunkley
2017-11-21 13:24:43 -06:00
parent 8a6c7da0a9
commit ca1806aa1d
3 changed files with 48 additions and 0 deletions

12
docker/makefile Normal file
View File

@@ -0,0 +1,12 @@
help:
cat Makefile
run:
docker-compose up
exec:
docker-compose exec -ti hondson-ml /bin/bash
build: stop .FORCE
docker-compose build --force-rm
stop:
docker stop handson-ml || true
.FORCE: