Change rebuild target
* --no-cache is needed to guarantee a full rebuild from scratch * --force-rm is not needed because rebuild calls the stop targetmain
parent
1e81324573
commit
6cec4e353c
|
@ -8,7 +8,7 @@ exec:
|
||||||
build: stop .FORCE
|
build: stop .FORCE
|
||||||
docker-compose build
|
docker-compose build
|
||||||
rebuild: stop .FORCE
|
rebuild: stop .FORCE
|
||||||
docker-compose build --force-rm
|
docker-compose build --no-cache
|
||||||
stop:
|
stop:
|
||||||
docker stop handson-ml2 || true; docker rm handson-ml2 || true;
|
docker stop handson-ml2 || true; docker rm handson-ml2 || true;
|
||||||
.FORCE:
|
.FORCE:
|
||||||
|
|
Loading…
Reference in New Issue