Makefile
2bc57578
 .PHONY: all binary build cross default docs docs-build docs-shell shell test test-docker-py test-integration-cli test-unit validate
26533eb2
 
b74fd062
 # get OS/Arch of docker engine
91201678
 DOCKER_OSARCH := $(shell bash -c 'source hack/make/.detect-daemon-osarch && echo $${DOCKER_ENGINE_OSARCH:+$$DOCKER_CLIENT_OSARCH}')
b74fd062
 # default for linux/amd64 and others
91201678
 DOCKERFILE := Dockerfile
b74fd062
 # switch to different Dockerfile for linux/arm
91201678
 ifeq ($(DOCKER_OSARCH), linux/arm)
 	DOCKERFILE := Dockerfile.armhf
 else
 ifeq ($(DOCKER_OSARCH), linux/arm64)
 	# TODO .arm64
 	DOCKERFILE := Dockerfile.armhf
 else
 ifeq ($(DOCKER_OSARCH), linux/ppc64le)
 	DOCKERFILE := Dockerfile.ppc64le
 else
 ifeq ($(DOCKER_OSARCH), linux/s390x)
 	DOCKERFILE := Dockerfile.s390x
b74fd062
 endif
91201678
 endif
 endif
 endif
 export DOCKERFILE
b74fd062
 
82f33d86
 # env vars passed through directly to Docker's build scripts
 # to allow things like `make DOCKER_CLIENTONLY=1 binary` easily
 # `docs/sources/contributing/devenvironment.md ` and `project/PACKAGERS.md` have some limited documentation of some of these
 DOCKER_ENVS := \
 	-e BUILDFLAGS \
 	-e DOCKER_CLIENTONLY \
a121ac85
 	-e DOCKER_DEBUG \
ca6722f1
 	-e DOCKER_EXPERIMENTAL \
91201678
 	-e DOCKERFILE \
82f33d86
 	-e DOCKER_GRAPHDRIVER \
2bc57578
 	-e DOCKER_REMAP_ROOT \
30f3bd64
 	-e DOCKER_STORAGE_OPTS \
d18919e3
 	-e DOCKER_USERLANDPROXY \
82f33d86
 	-e TESTDIRS \
 	-e TESTFLAGS \
 	-e TIMEOUT
 # note: we _cannot_ add "-e DOCKER_BUILDTAGS" here because even if it's unset in the shell, that would shadow the "ENV DOCKER_BUILDTAGS" set in our Dockerfile, which is very important for our official builds
 
987050a5
 # to allow `make BIND_DIR=. shell` or `make BIND_DIR= test`
c2653b0a
 # (default to no bind mount if DOCKER_HOST is set)
987050a5
 # note: BINDDIR is supported for backwards-compatibility here
 BIND_DIR := $(if $(BINDDIR),$(BINDDIR),$(if $(DOCKER_HOST),,bundles))
 DOCKER_MOUNT := $(if $(BIND_DIR),-v "$(CURDIR)/$(BIND_DIR):/go/src/github.com/docker/docker/$(BIND_DIR)")
82f33d86
 
bd24eb07
 
b51fe178
 GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
a4af8ad8
 DOCKER_IMAGE := docker-dev$(if $(GIT_BRANCH),:$(GIT_BRANCH))
b51fe178
 DOCKER_DOCS_IMAGE := docker-docs$(if $(GIT_BRANCH),:$(GIT_BRANCH))
bd24eb07
 
4d41fe0b
 DOCKER_FLAGS := docker run --rm -i --privileged $(DOCKER_ENVS) $(DOCKER_MOUNT)
82f33d86
 
4d41fe0b
 # if this session isn't interactive, then we don't want to allocate a
 # TTY, which would fail, but if it is interactive, we do want to attach
 # so that the user can send e.g. ^C through.
 INTERACTIVE := $(shell [ -t 0 ] && echo 1 || echo 0)
 ifeq ($(INTERACTIVE), 1)
 	DOCKER_FLAGS += -t
 endif
82f33d86
 
4d41fe0b
 DOCKER_RUN_DOCKER := $(DOCKER_FLAGS) "$(DOCKER_IMAGE)"
8d4459ff
 
00030ced
 default: binary
 
 all: build
 	$(DOCKER_RUN_DOCKER) hack/make.sh
 
 binary: build
 	$(DOCKER_RUN_DOCKER) hack/make.sh binary
26533eb2
 
2bc57578
 build: bundles
91201678
 	docker build -t "$(DOCKER_IMAGE)" -f "$(DOCKERFILE)" .
2bc57578
 
 bundles:
 	mkdir bundles
 
62a81370
 cross: build
0d47b74a
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary binary cross
62a81370
 
21a07a63
 deb: build
0d47b74a
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-deb
21a07a63
 
2bc57578
 docs:
 	$(MAKE) -C docs docs
 
21a07a63
 rpm: build
0d47b74a
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-rpm
fbb9223b
 
2bc57578
 shell: build
 	$(DOCKER_RUN_DOCKER) bash
 
00030ced
 test: build
0d47b74a
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-unit test-integration-cli test-docker-py
a39f3c92
 
2bc57578
 test-docker-py: build
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-docker-py
26533eb2
 
6db32fde
 test-integration-cli: build
0d47b74a
 	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-integration-cli
6db32fde
 
2bc57578
 test-unit: build
 	$(DOCKER_RUN_DOCKER) hack/make.sh test-unit
100267de
 
7de1557b
 validate: build
4c22c566
 	$(DOCKER_RUN_DOCKER) hack/make.sh validate-dco validate-gofmt validate-pkg validate-lint validate-test validate-toml validate-vet validate-vendor