diff --git a/Makefile b/Makefile index 480debf..a34fb40 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DOCKER_COMPOSE = docker-compose ## build: ## Build the environment - $(DOCKER_COMPOSE) pull --parallel --ignore-pull-failures + $(DOCKER_COMPOSE) pull --ignore-pull-failures $(DOCKER_COMPOSE) build --pull env: ## Configure the environment variables @@ -22,7 +22,7 @@ start: ## Start the environment echo 'The default configuration has been applied because the "docker-env" file was not configured.'; \ cp docker-env.dist docker-env; \ fi - $(DOCKER_COMPOSE) up -d --remove-orphans --no-recreate + $(DOCKER_COMPOSE) up -d --remove-orphans stop: ## Stop the environment $(DOCKER_COMPOSE) stop