github.com/gravitational/moby@v1.13.1/Makefile (about)

     1  .PHONY: all binary build cross deb help init-go-pkg-cache install manpages rpm run shell test test-docker-py test-integration-cli test-unit tgz validate win
     2  
     3  # set the graph driver as the current graphdriver if not set
     4  DOCKER_GRAPHDRIVER := $(if $(DOCKER_GRAPHDRIVER),$(DOCKER_GRAPHDRIVER),$(shell docker info 2>&1 | grep "Storage Driver" | sed 's/.*: //'))
     5  
     6  # get OS/Arch of docker engine
     7  DOCKER_OSARCH := $(shell bash -c 'source hack/make/.detect-daemon-osarch && echo $${DOCKER_ENGINE_OSARCH:-$$DOCKER_CLIENT_OSARCH}')
     8  DOCKERFILE := $(shell bash -c 'source hack/make/.detect-daemon-osarch && echo $${DOCKERFILE}')
     9  
    10  # env vars passed through directly to Docker's build scripts
    11  # to allow things like `make KEEPBUNDLE=1 binary` easily
    12  # `project/PACKAGERS.md` have some limited documentation of some of these
    13  DOCKER_ENVS := \
    14  	-e BUILD_APT_MIRROR \
    15  	-e BUILDFLAGS \
    16  	-e KEEPBUNDLE \
    17  	-e DOCKER_BUILD_ARGS \
    18  	-e DOCKER_BUILD_GOGC \
    19  	-e DOCKER_BUILD_PKGS \
    20  	-e DOCKER_DEBUG \
    21  	-e DOCKER_EXPERIMENTAL \
    22  	-e DOCKER_GITCOMMIT \
    23  	-e DOCKER_GRAPHDRIVER=$(DOCKER_GRAPHDRIVER) \
    24  	-e DOCKER_INCREMENTAL_BINARY \
    25  	-e DOCKER_PORT \
    26  	-e DOCKER_REMAP_ROOT \
    27  	-e DOCKER_STORAGE_OPTS \
    28  	-e DOCKER_USERLANDPROXY \
    29  	-e TESTDIRS \
    30  	-e TESTFLAGS \
    31  	-e TIMEOUT \
    32  	-e HTTP_PROXY \
    33  	-e HTTPS_PROXY \
    34  	-e NO_PROXY \
    35  	-e http_proxy \
    36  	-e https_proxy \
    37  	-e no_proxy
    38  # 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
    39  
    40  # to allow `make BIND_DIR=. shell` or `make BIND_DIR= test`
    41  # (default to no bind mount if DOCKER_HOST is set)
    42  # note: BINDDIR is supported for backwards-compatibility here
    43  BIND_DIR := $(if $(BINDDIR),$(BINDDIR),$(if $(DOCKER_HOST),,bundles))
    44  DOCKER_MOUNT := $(if $(BIND_DIR),-v "$(CURDIR)/$(BIND_DIR):/go/src/github.com/docker/docker/$(BIND_DIR)")
    45  
    46  # This allows the test suite to be able to run without worrying about the underlying fs used by the container running the daemon (e.g. aufs-on-aufs), so long as the host running the container is running a supported fs.
    47  # The volume will be cleaned up when the container is removed due to `--rm`.
    48  # Note that `BIND_DIR` will already be set to `bundles` if `DOCKER_HOST` is not set (see above BIND_DIR line), in such case this will do nothing since `DOCKER_MOUNT` will already be set.
    49  DOCKER_MOUNT := $(if $(DOCKER_MOUNT),$(DOCKER_MOUNT),-v /go/src/github.com/docker/docker/bundles)
    50  
    51  # enable .go-pkg-cache if DOCKER_INCREMENTAL_BINARY and DOCKER_MOUNT (i.e.DOCKER_HOST) are set
    52  PKGCACHE_DIR := $(if $(PKGCACHE_DIR),$(PKGCACHE_DIR),.go-pkg-cache)
    53  PKGCACHE_MAP := gopath:/go/pkg goroot-linux_amd64_netgo:/usr/local/go/pkg/linux_amd64_netgo
    54  DOCKER_MOUNT := $(if $(DOCKER_INCREMENTAL_BINARY),$(DOCKER_MOUNT) $(shell echo $(PKGCACHE_MAP) | sed -E 's@([^ ]*)@-v "$(CURDIR)/$(PKGCACHE_DIR)/\1"@g'),$(DOCKER_MOUNT))
    55  
    56  GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
    57  GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g")
    58  DOCKER_IMAGE := docker-dev$(if $(GIT_BRANCH_CLEAN),:$(GIT_BRANCH_CLEAN))
    59  DOCKER_PORT_FORWARD := $(if $(DOCKER_PORT),-p "$(DOCKER_PORT)",)
    60  
    61  DOCKER_FLAGS := docker run --rm -i --privileged $(DOCKER_ENVS) $(DOCKER_MOUNT) $(DOCKER_PORT_FORWARD)
    62  BUILD_APT_MIRROR := $(if $(DOCKER_BUILD_APT_MIRROR),--build-arg APT_MIRROR=$(DOCKER_BUILD_APT_MIRROR))
    63  export BUILD_APT_MIRROR
    64  
    65  # if this session isn't interactive, then we don't want to allocate a
    66  # TTY, which would fail, but if it is interactive, we do want to attach
    67  # so that the user can send e.g. ^C through.
    68  INTERACTIVE := $(shell [ -t 0 ] && echo 1 || echo 0)
    69  ifeq ($(INTERACTIVE), 1)
    70  	DOCKER_FLAGS += -t
    71  endif
    72  
    73  DOCKER_RUN_DOCKER := $(DOCKER_FLAGS) "$(DOCKER_IMAGE)"
    74  
    75  default: binary
    76  
    77  all: build ## validate all checks, build linux binaries, run all tests\ncross build non-linux binaries and generate archives
    78  	$(DOCKER_RUN_DOCKER) bash -c 'hack/validate/default && hack/make.sh'
    79  
    80  binary: build ## build the linux binaries
    81  	$(DOCKER_RUN_DOCKER) hack/make.sh binary
    82  
    83  build: bundles init-go-pkg-cache
    84  	docker build ${BUILD_APT_MIRROR} ${DOCKER_BUILD_ARGS} -t "$(DOCKER_IMAGE)" -f "$(DOCKERFILE)" .
    85  
    86  bundles:
    87  	mkdir bundles
    88  
    89  cross: build ## cross build the binaries for darwin, freebsd and\nwindows
    90  	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary binary cross
    91  
    92  deb: build  ## build the deb packages
    93  	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-deb
    94  
    95  
    96  help: ## this help
    97  	@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
    98  
    99  init-go-pkg-cache:
   100  	mkdir -p $(shell echo $(PKGCACHE_MAP) | sed -E 's@([^: ]*):[^ ]*@$(PKGCACHE_DIR)/\1@g')
   101  
   102  install: ## install the linux binaries
   103  	KEEPBUNDLE=1 hack/make.sh install-binary
   104  
   105  manpages: ## Generate man pages from go source and markdown
   106  	docker build -t docker-manpage-dev -f "man/$(DOCKERFILE)" ./man
   107  	docker run --rm \
   108  		-v $(PWD):/go/src/github.com/docker/docker/ \
   109  		docker-manpage-dev
   110  
   111  rpm: build ## build the rpm packages
   112  	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-rpm
   113  
   114  run: build ## run the docker daemon in a container
   115  	$(DOCKER_RUN_DOCKER) sh -c "KEEPBUNDLE=1 hack/make.sh install-binary run"
   116  
   117  shell: build ## start a shell inside the build env
   118  	$(DOCKER_RUN_DOCKER) bash
   119  
   120  test: build ## run the unit, integration and docker-py tests
   121  	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-unit test-integration-cli test-docker-py
   122  
   123  test-docker-py: build ## run the docker-py tests
   124  	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-docker-py
   125  
   126  test-integration-cli: build ## run the integration tests
   127  	$(DOCKER_RUN_DOCKER) hack/make.sh build-integration-test-binary dynbinary test-integration-cli
   128  
   129  test-unit: build ## run the unit tests
   130  	$(DOCKER_RUN_DOCKER) hack/make.sh test-unit
   131  
   132  tgz: build ## build the archives (.zip on windows and .tgz\notherwise) containing the binaries
   133  	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary binary cross tgz
   134  
   135  validate: build ## validate DCO, Seccomp profile generation, gofmt,\n./pkg/ isolation, golint, tests, tomls, go vet and vendor
   136  	$(DOCKER_RUN_DOCKER) hack/validate/all
   137  
   138  win: build ## cross build the binary for windows
   139  	$(DOCKER_RUN_DOCKER) hack/make.sh win
   140  
   141  .PHONY: swagger-gen
   142  swagger-gen:
   143  	docker run --rm -v $(PWD):/go/src/github.com/docker/docker \
   144  		-w /go/src/github.com/docker/docker \
   145  		--entrypoint hack/generate-swagger-api.sh \
   146  		-e GOPATH=/go \
   147  		quay.io/goswagger/swagger:0.7.4