github.com/webwurst/docker@v1.7.0/Makefile (about)

     1  .PHONY: all binary build cross default docs docs-build docs-shell shell test test-unit test-integration-cli test-docker-py validate
     2  
     3  # env vars passed through directly to Docker's build scripts
     4  # to allow things like `make DOCKER_CLIENTONLY=1 binary` easily
     5  # `docs/sources/contributing/devenvironment.md ` and `project/PACKAGERS.md` have some limited documentation of some of these
     6  DOCKER_ENVS := \
     7  	-e BUILDFLAGS \
     8  	-e DOCKER_CLIENTONLY \
     9  	-e DOCKER_EXECDRIVER \
    10  	-e DOCKER_EXPERIMENTAL \
    11  	-e DOCKER_GRAPHDRIVER \
    12  	-e DOCKER_STORAGE_OPTS \
    13  	-e DOCKER_USERLANDPROXY \
    14  	-e TESTDIRS \
    15  	-e TESTFLAGS \
    16  	-e TIMEOUT
    17  # 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
    18  
    19  # to allow `make BIND_DIR=. shell` or `make BIND_DIR= test`
    20  # (default to no bind mount if DOCKER_HOST is set)
    21  # note: BINDDIR is supported for backwards-compatibility here
    22  BIND_DIR := $(if $(BINDDIR),$(BINDDIR),$(if $(DOCKER_HOST),,bundles))
    23  DOCKER_MOUNT := $(if $(BIND_DIR),-v "$(CURDIR)/$(BIND_DIR):/go/src/github.com/docker/docker/$(BIND_DIR)")
    24  
    25  
    26  GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
    27  DOCKER_IMAGE := docker-dev$(if $(GIT_BRANCH),:$(GIT_BRANCH))
    28  DOCKER_DOCS_IMAGE := docker-docs$(if $(GIT_BRANCH),:$(GIT_BRANCH))
    29  
    30  DOCKER_RUN_DOCKER := docker run --rm -it --privileged $(DOCKER_ENVS) $(DOCKER_MOUNT) "$(DOCKER_IMAGE)"
    31  
    32  DOCKER_RUN_DOCS := docker run --rm -it $(DOCS_MOUNT) -e AWS_S3_BUCKET -e NOCACHE
    33  
    34  # for some docs workarounds (see below in "docs-build" target)
    35  GITCOMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
    36  
    37  default: binary
    38  
    39  all: build
    40  	$(DOCKER_RUN_DOCKER) hack/make.sh
    41  
    42  binary: build
    43  	$(DOCKER_RUN_DOCKER) hack/make.sh binary
    44  
    45  cross: build
    46  	$(DOCKER_RUN_DOCKER) hack/make.sh binary cross
    47  
    48  
    49  test: build
    50  	$(DOCKER_RUN_DOCKER) hack/make.sh binary cross test-unit test-integration-cli test-docker-py
    51  
    52  test-unit: build
    53  	$(DOCKER_RUN_DOCKER) hack/make.sh test-unit
    54  
    55  test-integration-cli: build
    56  	$(DOCKER_RUN_DOCKER) hack/make.sh binary test-integration-cli
    57  
    58  test-docker-py: build
    59  	$(DOCKER_RUN_DOCKER) hack/make.sh binary test-docker-py
    60  
    61  validate: build
    62  	$(DOCKER_RUN_DOCKER) hack/make.sh validate-dco validate-gofmt validate-test validate-toml validate-vet
    63  
    64  shell: build
    65  	$(DOCKER_RUN_DOCKER) bash
    66  
    67  build: bundles
    68  	docker build -t "$(DOCKER_IMAGE)" .
    69  
    70  bundles:
    71  	mkdir bundles