kumquat-buildroot/package/nerdctl/nerdctl.mk
Christian Stewart b95b8fb44c package/nerdctl: new package
nerdctl is a CLI for containerd (package docker-containerd) which is
drop-in compatible with the Docker Daemon CLI.

This allows using the lighter weight containerd daemon directly,
instead of via the additional docker daemon. It also implements
rootless mode.

https://github.com/containerd/nerdctl

Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-07-28 08:43:49 +02:00

21 lines
525 B
Makefile

################################################################################
#
# nerdctl
#
################################################################################
NERDCTL_VERSION = 0.17.1
NERDCTL_SITE = $(call github,containerd,nerdctl,v$(NERDCTL_VERSION))
NERDCTL_LICENSE = Apache-2.0
NERDCTL_LICENSE_FILES = LICENSE
NERDCTL_GOMOD = github.com/containerd/nerdctl
NERDCTL_LDFLAGS = \
-X $(NERDCTL_GOMOD)/pkg/version.Version=$(NERDCTL_VERSION)
NERDCTL_BUILD_TARGETS = cmd/nerdctl
$(eval $(golang-package))