Update classic Docker location depending on OS.

Adding support for devs on WSL2 and Linux.
This commit is contained in:
Chad Metcalf 2020-06-12 16:29:41 -07:00
parent 2e11b2148a
commit 39f2093827
No known key found for this signature in database
GPG Key ID: BCA7CAE891B2C9B5
1 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,14 @@
export DOCKER_BUILDKIT=1
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
CLASSIC_DOCKER=/usr/bin/docker
endif
ifeq ($(UNAME_S),Darwin)
CLASSIC_DOCKER=/Applications/Docker.app/Contents/Resources/bin/docker
endif
all: cli
protos: ## Generate go code from .proto files