From 5995e4d90b51239f3caaae75abeb8712979261b4 Mon Sep 17 00:00:00 2001 From: Javier Marcet Date: Sun, 26 Jun 2022 18:24:40 +0200 Subject: [PATCH] docker-compose: Update to version 2.6.1 Enhancements: - Support for setting secret from env variable by @ndeloof Fixes: - Do not start unrelated dependencies on run by @laurazard - Fix service not found errors when using --no-deps by @nicksieger - Respect COMPOSE_REMOVE_ORPHANS env var on down by @nicksieger - Fix project level bind mounts volumes by @ulyssessouza - Respect deploy.limits.cpus and deploy.limits.pids by @glours Internal: - Upgrade: Go v1.18.3 by @thaJeztah - Upgrade: compose-go v1.2.8 by @milas - Upgrade: buildx v0.8.2 by @dependabot - Upgrade: containerd v1.6.6 by @dependabot 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 6633c53f9b..0dea1b2ddd 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.6.0 +PKG_VERSION:=2.6.1 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:=b01b998dbc29478ec989a9df4ebaf4017b7406bba1847b061632f0a7a9841751 +PKG_HASH:=7d4ad5354e382809368016210b33c4f6c3bca68da15e36edc671da00fb234666 PKG_MAINTAINER:=Javier Marcet