mirror of
https://github.com/docker/compose.git
synced 2026-08-28 04:18:05 +00:00
Merge pull request #208 from metcalfc/wsl2
Update classic Docker location depending on OS.
This commit is contained in:
commit
f19fe9e188
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue