Use Docker Compose 2.2.2 instead of Docker Compose 2.1.1

This commit is contained in:
Tortue Torche 2021-12-07 18:13:52 +01:00
parent 85c0b369df
commit d5b5a14be2
3 changed files with 5 additions and 2 deletions

View File

@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add `linux/arm/v7` architecture to support Raspberry Pi
### Changed
- Use Docker [Compose 2.2.2](https://github.com/docker/compose/releases/tag/v2.2.2) instead of Docker [Compose 2.1.1](https://github.com/docker/compose/releases/tag/v2.1.1)
### Fixed
- `psu` was unusable when using a custom <abbr title="Certificate Authority">CA</abbr>, with the `HTTPIE_VERIFY_SSL` env

View File

@ -1,6 +1,6 @@
FROM --platform=$BUILDPLATFORM alpine:3.15
ARG DOCKER_COMPOSE_VERSION="v2.1.1"
ARG DOCKER_COMPOSE_VERSION="v2.2.2"
RUN set -e; \
apk add --no-cache \

View File

@ -1,6 +1,6 @@
FROM --platform=$BUILDPLATFORM debian:11-slim
ARG DOCKER_COMPOSE_VERSION="v2.1.1"
ARG DOCKER_COMPOSE_VERSION="v2.2.2"
RUN set -e; \
apt-get update -yqq; \