kumquat-buildroot/package/docker-proxy/docker-proxy.mk
Christian Stewart 8175041003 docker-proxy: new package
Add docker-proxy package to Buildroot. Needed by docker-engine at
runtime, and previously not included. This leads to the following error
when attempting to port-map ports to a container:

  $ docker run -p 8080:8080 nginx
  docker: Error response from daemon: driver failed programming external
  connectivity on endpoint:
  exec: "docker-proxy": executable file not found in $PATH.

Docker expects the docker-proxy binary to exist in the PATH.

Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-03-11 22:34:10 +01:00

47 lines
1.3 KiB
Makefile

################################################################################
#
# docker-proxy
#
################################################################################
DOCKER_PROXY_VERSION = 7b2b1feb1de4817d522cc372af149ff48d25028e
DOCKER_PROXY_SITE = $(call github,docker,libnetwork,$(DOCKER_PROXY_VERSION))
DOCKER_PROXY_LICENSE = Apache-2.0
DOCKER_PROXY_LICENSE_FILES = LICENSE
DOCKER_PROXY_DEPENDENCIES = host-go host-pkgconf
DOCKER_PROXY_GOPATH = "$(@D)/gopath"
DOCKER_PROXY_MAKE_ENV = $(HOST_GO_TARGET_ENV) \
CGO_ENABLED=1 \
CGO_NO_EMULATION=1 \
GOBIN="$(@D)/bin" \
GOPATH="$(DOCKER_PROXY_GOPATH)" \
PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \
$(TARGET_MAKE_ENV)
ifeq ($(BR2_STATIC_LIBS),y)
DOCKER_PROXY_GLDFLAGS += -extldflags '-static'
endif
define DOCKER_PROXY_CONFIGURE_CMDS
mkdir -p $(DOCKER_PROXY_GOPATH)/src/github.com/docker
ln -fs $(@D) $(DOCKER_PROXY_GOPATH)/src/github.com/docker/libnetwork
endef
define DOCKER_PROXY_BUILD_CMDS
cd $(@D)/gopath/src/github.com/docker/libnetwork; \
$(DOCKER_PROXY_MAKE_ENV) \
$(HOST_DIR)/usr/bin/go build -v \
-o $(@D)/bin/docker-proxy \
-ldflags "$(DOCKER_PROXY_GLDFLAGS)" \
github.com/docker/libnetwork/cmd/proxy
endef
define DOCKER_PROXY_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/bin/docker-proxy $(TARGET_DIR)/usr/bin/docker-proxy
endef
$(eval $(generic-package))