Skip to content

Commit 27860be

Browse files
author
Gabriel Monroy
committed
fix(makefile): default to 3 nodes, test for docker binary
1 parent 0943823 commit 27860be

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

includes.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ifndef DEIS_NUM_INSTANCES
2-
DEIS_NUM_INSTANCES = 1
2+
DEIS_NUM_INSTANCES = 3
33
endif
44

55
define echo_cyan
@@ -18,8 +18,8 @@ GIT_SHA = $(shell git rev-parse --short HEAD)
1818
GIT_TAG = git-$(GIT_SHA)
1919

2020
check-docker:
21-
@if [ -z "$$DOCKER_HOST" ]; then \
22-
echo DOCKER_HOST is not exported, try \`boot2docker up\`; \
21+
@if [ -z $$(which docker) ]; then \
22+
echo "Missing \`docker\` client which is required for development"; \
2323
exit 2; \
2424
fi
2525

0 commit comments

Comments
 (0)