[#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:
parent
9a7c70c5c6
commit
2b789c7045
1 changed files with 3 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -53,7 +53,9 @@ get: $(foreach SVC, $(GET_SVCS), get.$(SVC))
|
||||||
# Start environment
|
# Start environment
|
||||||
.PHONY: up
|
.PHONY: up
|
||||||
up: pull get vendor/hosts
|
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
|
# Stop environment
|
||||||
.PHONY: down
|
.PHONY: down
|
||||||
|
|
Loading…
Reference in a new issue