2017-04-25 19:57:06 +03:00
|
|
|
#
|
|
|
|
# github.com/docker/cli
|
|
|
|
#
|
|
|
|
# Makefile for developing using Docker
|
|
|
|
#
|
|
|
|
|
2019-01-14 21:40:30 +03:00
|
|
|
# Overridable env vars
|
|
|
|
DOCKER_CLI_MOUNTS ?= -v "$(CURDIR)":/go/src/github.com/docker/cli
|
|
|
|
DOCKER_CLI_CONTAINER_NAME ?=
|
|
|
|
DOCKER_CLI_GO_BUILD_CACHE ?= y
|
|
|
|
|
2021-10-11 17:54:09 +03:00
|
|
|
# Sets the name of the company that produced the windows binary.
|
2022-03-27 11:09:50 +03:00
|
|
|
PACKAGER_NAME ?=
|
2021-10-11 17:54:09 +03:00
|
|
|
|
2017-08-15 23:59:43 +03:00
|
|
|
DEV_DOCKER_IMAGE_NAME = docker-cli-dev$(IMAGE_TAG)
|
2021-11-17 19:18:15 +03:00
|
|
|
E2E_IMAGE_NAME = docker-cli-e2e
|
2024-02-13 16:32:45 +03:00
|
|
|
ENGINE_VERSION ?=
|
2018-12-10 14:30:52 +03:00
|
|
|
CACHE_VOLUME_NAME := docker-cli-dev-cache
|
2019-01-14 21:40:30 +03:00
|
|
|
ifeq ($(DOCKER_CLI_GO_BUILD_CACHE),y)
|
|
|
|
DOCKER_CLI_MOUNTS += -v "$(CACHE_VOLUME_NAME):/root/.cache/go-build"
|
2018-12-10 14:30:52 +03:00
|
|
|
endif
|
2017-05-22 23:22:42 +03:00
|
|
|
VERSION = $(shell cat VERSION)
|
2024-02-13 16:32:45 +03:00
|
|
|
ENVVARS = -e VERSION=$(VERSION) -e GITCOMMIT -e PLATFORM -e TESTFLAGS -e TESTDIRS -e GOOS -e GOARCH -e GOARM -e ENGINE_VERSION
|
2017-04-25 19:57:06 +03:00
|
|
|
|
2020-09-24 14:01:42 +03:00
|
|
|
# Some Dockerfiles use features that are only supported with BuildKit enabled
|
|
|
|
export DOCKER_BUILDKIT=1
|
|
|
|
|
2017-04-25 19:57:06 +03:00
|
|
|
# build docker image (dockerfiles/Dockerfile.build)
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: build_docker_image
|
2017-04-25 19:57:06 +03:00
|
|
|
build_docker_image:
|
Do not patch Dockerfiles in CI
When building the Dockerfiles for development, those images are mainly used to
create a reproducible build-environment. The source code is bind-mounted into
the image at runtime; there is no need to create an image with the actual
source code, and copying the source code into the image would lead to a new
image being created for each code-change (possibly leading up to many "dangling"
images for previous code-changes).
However, when building (and using) the development images in CI, bind-mounting
is not an option, because the daemon is running remotely.
To make this work, the circle-ci script patched the Dockerfiles when CI is run;
adding a `COPY` to the respective Dockerfiles.
Patching Dockerfiles is not really a "best practice" and, even though the source
code does not and up in the image, the source would still be _sent_ to the daemon
for each build (unless BuildKit is used).
This patch updates the makefiles, circle-ci script, and Dockerfiles;
- When building the Dockerfiles locally, pipe the Dockerfile through stdin.
Doing so, prevents the build-context from being sent to the daemon. This speeds
up the build, and doesn't fill up the Docker "temp" directory with content that's
not used
- Now that no content is sent, add the COPY instructions to the Dockerfiles, and
remove the code in the circle-ci script to "live patch" the Dockerfiles.
Before this patch is applied (with cache):
```
$ time make -f docker.Makefile build_shell_validate_image
docker build -t docker-cli-shell-validate -f ./dockerfiles/Dockerfile.shellcheck .
Sending build context to Docker daemon 41MB
Step 1/2 : FROM debian:stretch-slim
...
Successfully built 81e14e8ad856
Successfully tagged docker-cli-shell-validate:latest
2.75 real 0.45 user 0.56 sys
```
After this patch is applied (with cache)::
```
$ time make -f docker.Makefile build_shell_validate_image
cat ./dockerfiles/Dockerfile.shellcheck | docker build -t docker-cli-shell-validate -
Sending build context to Docker daemon 2.048kB
Step 1/2 : FROM debian:stretch-slim
...
Successfully built 81e14e8ad856
Successfully tagged docker-cli-shell-validate:latest
0.33 real 0.07 user 0.08 sys
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2018-11-29 03:06:10 +03:00
|
|
|
# build dockerfile from stdin so that we don't send the build-context; source is bind-mounted in the development environment
|
2019-07-18 12:13:45 +03:00
|
|
|
cat ./dockerfiles/Dockerfile.dev | docker build ${DOCKER_BUILD_ARGS} --build-arg=GO_VERSION -t $(DEV_DOCKER_IMAGE_NAME) -
|
2017-04-25 19:57:06 +03:00
|
|
|
|
2019-01-14 21:40:30 +03:00
|
|
|
DOCKER_RUN_NAME_OPTION := $(if $(DOCKER_CLI_CONTAINER_NAME),--name $(DOCKER_CLI_CONTAINER_NAME),)
|
|
|
|
DOCKER_RUN := docker run --rm $(ENVVARS) $(DOCKER_CLI_MOUNTS) $(DOCKER_RUN_NAME_OPTION)
|
2018-01-18 20:53:22 +03:00
|
|
|
|
2021-09-26 19:01:38 +03:00
|
|
|
.PHONY: binary
|
2022-04-06 19:34:51 +03:00
|
|
|
binary: ## build executable
|
2022-03-27 11:09:50 +03:00
|
|
|
PACKAGER_NAME=$(PACKAGER_NAME) docker buildx bake binary
|
2017-05-12 19:07:57 +03:00
|
|
|
|
2018-07-31 14:15:41 +03:00
|
|
|
build: binary ## alias for binary
|
2017-04-25 19:57:06 +03:00
|
|
|
|
2021-11-17 19:18:15 +03:00
|
|
|
plugins: ## build the CLI plugin examples
|
|
|
|
docker buildx bake plugins
|
|
|
|
|
|
|
|
plugins-cross: ## build the CLI plugin examples for all platforms
|
|
|
|
docker buildx bake plugins-cross
|
2018-12-10 18:30:19 +03:00
|
|
|
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: clean
|
2018-07-31 14:15:41 +03:00
|
|
|
clean: build_docker_image ## clean build artifacts
|
2019-01-14 21:40:30 +03:00
|
|
|
$(DOCKER_RUN) $(DEV_DOCKER_IMAGE_NAME) make clean
|
2018-12-10 14:30:52 +03:00
|
|
|
docker volume rm -f $(CACHE_VOLUME_NAME)
|
2017-04-25 19:57:06 +03:00
|
|
|
|
2021-09-26 19:01:38 +03:00
|
|
|
.PHONY: cross
|
|
|
|
cross:
|
2022-03-27 11:09:50 +03:00
|
|
|
PACKAGER_NAME=$(PACKAGER_NAME) docker buildx bake cross
|
2021-09-26 19:01:38 +03:00
|
|
|
|
|
|
|
.PHONY: dynbinary
|
|
|
|
dynbinary: ## build dynamically linked binary
|
2022-03-27 11:09:50 +03:00
|
|
|
USE_GLIBC=1 PACKAGER_NAME=$(PACKAGER_NAME) docker buildx bake dynbinary
|
2021-09-26 19:01:38 +03:00
|
|
|
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: dev
|
2018-07-31 14:15:41 +03:00
|
|
|
dev: build_docker_image ## start a build container in interactive mode for in-container development
|
2019-01-14 21:40:30 +03:00
|
|
|
$(DOCKER_RUN) -it \
|
2020-08-28 14:34:20 +03:00
|
|
|
--mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
|
2020-08-28 14:19:09 +03:00
|
|
|
$(DEV_DOCKER_IMAGE_NAME)
|
2017-05-02 22:10:03 +03:00
|
|
|
|
2018-07-31 14:15:41 +03:00
|
|
|
shell: dev ## alias for dev
|
2017-05-12 01:52:17 +03:00
|
|
|
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: lint
|
2021-08-05 09:44:16 +03:00
|
|
|
lint: ## run linters
|
|
|
|
docker buildx bake lint
|
2017-05-10 00:29:14 +03:00
|
|
|
|
2021-09-26 19:01:38 +03:00
|
|
|
.PHONY: shellcheck
|
|
|
|
shellcheck: ## run shellcheck validation
|
|
|
|
docker buildx bake shellcheck
|
|
|
|
|
2018-12-10 16:17:14 +03:00
|
|
|
.PHONY: fmt
|
Use gofumpt if available, and enable gofumpt linter
gofumpt provides a supserset of gofmt / go fmt, but not every developer may have
it installed, so for situations where it's not available, fall back to gofmt.
As our code has been formatted with gofumpt already, in most cases contributions
will follow those formatting rules, but in some cases there may be a difference,
which would already be flagged by manual code review, but let's also enable the
gofumpt linter.
With this change, `make fmt` will use gofumpt is available; gofumpt has been
added to the dev-container, so `make -f docker.Makefile fmt` will always use it.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-09-30 14:10:53 +03:00
|
|
|
fmt: ## run gofumpt
|
2019-01-14 21:40:30 +03:00
|
|
|
$(DOCKER_RUN) $(DEV_DOCKER_IMAGE_NAME) make fmt
|
2018-12-10 16:17:14 +03:00
|
|
|
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: vendor
|
2021-12-16 23:15:53 +03:00
|
|
|
vendor: ## update vendor with go modules
|
|
|
|
$(eval $@_TMP_OUT := $(shell mktemp -d -t dockercli-output.XXXXXXXXXX))
|
|
|
|
docker buildx bake --set "*.output=$($@_TMP_OUT)" update-vendor
|
|
|
|
rm -rf ./vendor
|
|
|
|
cp -R "$($@_TMP_OUT)"/out/* .
|
|
|
|
rm -rf $($@_TMP_OUT)/*
|
|
|
|
|
|
|
|
.PHONY: validate-vendor
|
|
|
|
validate-vendor: ## validate vendor
|
|
|
|
docker buildx bake validate-vendor
|
|
|
|
|
|
|
|
.PHONY: mod-outdated
|
|
|
|
mod-outdated: ## check outdated dependencies
|
2022-01-13 15:47:43 +03:00
|
|
|
docker buildx bake mod-outdated
|
2017-05-12 01:52:17 +03:00
|
|
|
|
2018-01-02 17:47:31 +03:00
|
|
|
.PHONY: authors
|
|
|
|
authors: ## generate AUTHORS file from git history
|
2021-12-21 03:44:40 +03:00
|
|
|
docker buildx bake update-authors
|
2018-01-02 17:47:31 +03:00
|
|
|
|
2017-05-11 04:24:32 +03:00
|
|
|
.PHONY: manpages
|
2018-07-31 14:15:41 +03:00
|
|
|
manpages: build_docker_image ## generate man pages from go source and markdown
|
2019-01-14 21:40:30 +03:00
|
|
|
$(DOCKER_RUN) -it $(DEV_DOCKER_IMAGE_NAME) make manpages
|
2017-05-11 04:24:32 +03:00
|
|
|
|
2023-01-06 21:04:05 +03:00
|
|
|
.PHONY: mddocs
|
|
|
|
mddocs: build_docker_image ## generate markdown files from go source
|
|
|
|
$(DOCKER_RUN) -it $(DEV_DOCKER_IMAGE_NAME) make mddocs
|
|
|
|
|
2017-05-11 04:24:32 +03:00
|
|
|
.PHONY: yamldocs
|
2018-07-31 14:15:41 +03:00
|
|
|
yamldocs: build_docker_image ## generate documentation YAML files consumed by docs repo
|
2019-01-14 21:40:30 +03:00
|
|
|
$(DOCKER_RUN) -it $(DEV_DOCKER_IMAGE_NAME) make yamldocs
|
2017-06-29 16:10:04 +03:00
|
|
|
|
2021-12-07 16:50:16 +03:00
|
|
|
.PHONY: test ## run unit and e2e tests
|
|
|
|
test: test-unit test-e2e
|
|
|
|
|
|
|
|
.PHONY: test-unit
|
|
|
|
test-unit: ## run unit tests
|
|
|
|
docker buildx bake test
|
|
|
|
|
|
|
|
.PHONY: test-coverage
|
|
|
|
test-coverage: ## run test with coverage
|
|
|
|
docker buildx bake test-coverage
|
|
|
|
|
2021-11-17 19:18:15 +03:00
|
|
|
.PHONY: build-e2e-image
|
|
|
|
build-e2e-image:
|
2021-12-07 16:50:16 +03:00
|
|
|
mkdir -p $(CURDIR)/build/coverage
|
2021-11-17 19:18:15 +03:00
|
|
|
IMAGE_NAME=$(E2E_IMAGE_NAME) VERSION=$(VERSION) docker buildx bake e2e-image
|
|
|
|
|
2019-01-07 19:32:56 +03:00
|
|
|
.PHONY: test-e2e
|
|
|
|
test-e2e: test-e2e-non-experimental test-e2e-experimental test-e2e-connhelper-ssh ## run all e2e tests
|
2018-06-25 12:46:35 +03:00
|
|
|
|
|
|
|
.PHONY: test-e2e-experimental
|
2021-11-17 19:18:15 +03:00
|
|
|
test-e2e-experimental: build-e2e-image # run experimental e2e tests
|
2024-02-13 16:32:45 +03:00
|
|
|
docker run --rm $(ENVVARS) -e DOCKERD_EXPERIMENTAL=1 \
|
2021-12-07 16:50:16 +03:00
|
|
|
--mount type=bind,src=$(CURDIR)/build/coverage,dst=/tmp/coverage \
|
|
|
|
--mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
|
|
|
|
$(E2E_IMAGE_NAME)
|
2018-06-25 12:46:35 +03:00
|
|
|
|
|
|
|
.PHONY: test-e2e-non-experimental
|
2021-11-17 19:18:15 +03:00
|
|
|
test-e2e-non-experimental: build-e2e-image # run non-experimental e2e tests
|
2024-02-13 16:32:45 +03:00
|
|
|
docker run --rm $(ENVVARS) \
|
2021-12-07 16:50:16 +03:00
|
|
|
--mount type=bind,src=$(CURDIR)/build/coverage,dst=/tmp/coverage \
|
|
|
|
--mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
|
|
|
|
$(E2E_IMAGE_NAME)
|
2018-07-31 14:15:41 +03:00
|
|
|
|
2018-09-06 08:38:01 +03:00
|
|
|
.PHONY: test-e2e-connhelper-ssh
|
2021-11-17 19:18:15 +03:00
|
|
|
test-e2e-connhelper-ssh: build-e2e-image # run experimental SSH-connection helper e2e tests
|
2024-02-13 16:32:45 +03:00
|
|
|
docker run --rm $(ENVVARS) -e DOCKERD_EXPERIMENTAL=1 -e TEST_CONNHELPER=ssh \
|
2021-12-07 16:50:16 +03:00
|
|
|
--mount type=bind,src=$(CURDIR)/build/coverage,dst=/tmp/coverage \
|
|
|
|
--mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
|
|
|
|
$(E2E_IMAGE_NAME)
|
2018-09-06 08:38:01 +03:00
|
|
|
|
2018-07-31 14:15:41 +03:00
|
|
|
.PHONY: help
|
|
|
|
help: ## print this help
|
2019-01-10 15:30:03 +03:00
|
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {gsub("\\\\n",sprintf("\n%22c",""), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|