We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0943823 commit 27860beCopy full SHA for 27860be
1 file changed
includes.mk
@@ -1,5 +1,5 @@
1
ifndef DEIS_NUM_INSTANCES
2
- DEIS_NUM_INSTANCES = 1
+ DEIS_NUM_INSTANCES = 3
3
endif
4
5
define echo_cyan
@@ -18,8 +18,8 @@ GIT_SHA = $(shell git rev-parse --short HEAD)
18
GIT_TAG = git-$(GIT_SHA)
19
20
check-docker:
21
- @if [ -z "$$DOCKER_HOST" ]; then \
22
- echo DOCKER_HOST is not exported, try \`boot2docker up\`; \
+ @if [ -z $$(which docker) ]; then \
+ echo "Missing \`docker\` client which is required for development"; \
23
exit 2; \
24
fi
25
0 commit comments