handson-ml/docker/Makefile
Nikolas Garofil 6cec4e353c Change rebuild target
* --no-cache is needed to guarantee a full rebuild from scratch
* --force-rm is not needed because rebuild calls the stop target
2020-08-11 16:23:44 +02:00

15 lines
263 B
Makefile

help:
cat Makefile
run:
docker-compose up
exec:
docker-compose exec handson-ml2 bash
build: stop .FORCE
docker-compose build
rebuild: stop .FORCE
docker-compose build --no-cache
stop:
docker stop handson-ml2 || true; docker rm handson-ml2 || true;
.FORCE: