From 83357a7fe4a17094ea375682e426a5b71ee64082 Mon Sep 17 00:00:00 2001 From: Javier Marcet Date: Mon, 14 Mar 2022 08:31:23 +0100 Subject: [PATCH] docker-compose: Update to version 2.3.3 What's Changed: - use plain text progress when ansi=never is set by @ndeloof - build full compose model from resources, then filter by services by @ndeloof - add run with dependencies e2e test by @glours - add support for device_cgroup_rules by @ndeloof - composeService to use dockerCli's In/Out/Err streams by @ndeloof - fix generated YAML missing an "examples" section, and update cli-docs-tool to v0.4.0 by @thaJeztah Signed-off-by: Javier Marcet --- utils/docker-compose/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/docker-compose/Makefile b/utils/docker-compose/Makefile index 25fed9fdb..87d1538e0 100644 --- a/utils/docker-compose/Makefile +++ b/utils/docker-compose/Makefile @@ -1,14 +1,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=compose -PKG_VERSION:=2.3.2 +PKG_VERSION:=2.3.3 PKG_RELEASE:=$(AUTORELEASE) PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE PKG_SOURCE:=v$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/docker/compose/tar.gz/v${PKG_VERSION}? -PKG_HASH:=11c1ea791698ec04c56d69207cf7b256e11b8dd2b4ae7b21cb5cdf875f5fe00a +PKG_HASH:=bcca033859abfbb0949c4455725e5b01593f217f0b32b1d7f861c75c0b69f285 PKG_MAINTAINER:=Javier Marcet