Parcourir la source

Update clean make commands

Jérôme BUISINE il y a 4 ans
Parent
commit
af1948331d
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 1 1
      Makefile
  2. 3 3
      README.md

+ 1 - 1
Makefile

@@ -36,7 +36,7 @@ remove:
 	@echo "App is now stopped and removed"
 	@echo "----------------------------------------------------------------"
 
-clean: remove
+clean: 
 	@echo "----------------------------------------------------------------"
 	@echo "Process to remove image"
 	@echo "----------------------------------------------------------------"

+ 3 - 3
README.md

@@ -51,9 +51,9 @@ make deploy
 Will run `build` and `run` commands at once.
 
 You also have `stop`, `remove`, `clean` commands:
-- `stop`: stop current container instance
-- `remove`: stop and remove container instance
-- `clean`: stop and remove container instance. Also remove docker image
+- `stop`: stop current container instance if exists
+- `remove`: stop and remove container instance if exists
+- `clean`: remove docker image if exists
 
 ## How to contribute ?