[#106] Makefile: Add extra epoch tick after docker-compose up

New epoch will include storage nodes in network map.

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-06-29 22:53:09 +03:00 committed by Alex Vanin
parent 9a7c70c5c6
commit 2b789c7045

View file

@ -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