From 2b789c7045aea404c97eee53393efea6caf6a9e4 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Tue, 29 Jun 2021 22:53:09 +0300 Subject: [PATCH] [#106] Makefile: Add extra epoch tick after docker-compose up New epoch will include storage nodes in network map. Signed-off-by: Alex Vanin --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9e55281..84a7531 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,9 @@ get: $(foreach SVC, $(GET_SVCS), get.$(SVC)) # Start environment .PHONY: up up: pull get vendor/hosts - $(foreach SVC, $(START_SVCS), $(shell docker-compose -f services/$(SVC)/docker-compose.yml up -d)) + @$(foreach SVC, $(START_SVCS), $(shell docker-compose -f services/$(SVC)/docker-compose.yml up -d)) + @./bin/tick.sh + @echo "NeoFS Developer Environment is ready" # Stop environment .PHONY: down