diff options
author | Javier Marcet <javier@marcet.info> | 2022-03-29 15:07:37 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2022-03-30 09:04:31 +0300 |
commit | b33c5dbd0695d5d2198c6888d3f75243b904f494 (patch) | |
tree | 53f11d22e5f3a06c29f4e0dcac86e1f7e9c2d03d /utils/docker-compose | |
parent | 1dd0c8bfbbf7b25dd811192101ed9b72dc3cfba3 (diff) |
docker-compose: Update to version 2.3.4
What's Changed:
- don't fail trying to remove container with no candidate by @ndeloof
- recreate container after image has been rebuilt/pulled by @ndeloof
- ps: un-deprecate --filter, and enhance docs by @thaJeztah
- Bump github.com/spf13/cobra from 1.3.0 to 1.4.0 by @dependabot
- Remove DEPRECATED text, since it's just the default by
@ulyssessouza
- Bump Buildx to v0.8.0 by @ndeloof
- kill only need project name by @ndeloof
- don't remove external volumes/networks by @ndeloof
- use docker/cli RunExec and RunStart to handle all the
interactive/tty/* terminal logic by @ndeloof
- Validate doc on pr by @glours
Signed-off-by: Javier Marcet <javier@marcet.info>
Diffstat (limited to 'utils/docker-compose')
-rw-r--r-- | utils/docker-compose/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/docker-compose/Makefile b/utils/docker-compose/Makefile index 87d1538e0..8f549f81c 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.3 +PKG_VERSION:=2.3.4 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:=bcca033859abfbb0949c4455725e5b01593f217f0b32b1d7f861c75c0b69f285 +PKG_HASH:=10657bbca710b7bfe7e17f259a4ab6cf69b890e7ac4b3bfc2444ef3086bd89cb PKG_MAINTAINER:=Javier Marcet <javier@marcet.info> |