From f43af0e64447b515dc5592713d87d4301f8697da Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Mon, 3 Jun 2019 21:09:29 +0300 Subject: [PATCH] Build: specify build flag for `docker-compose up` (#17411) Otherwise changed data will not get refreshed to the previous state. Which I think is not evident (unless you are familar with docker-compose). and therefore error-prone (at least it did for me) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7025dff42aa..1d71675dbab 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ devenv: devenv-down (rm -rf docker-compose.yaml; exit 1) @cd devenv; \ - docker-compose up -d + docker-compose up -d --build endif # drop down the envs