From ad41b00a3daa759ae636a6e966b0cbad29a50765 Mon Sep 17 00:00:00 2001 From: Duncan Bayne Date: Wed, 3 Jul 2024 15:23:56 +1000 Subject: [PATCH] Hack around docker-compose being deprecated Argh. Replace this ASAP - straight after fixing work scripts. --- mint/conf/bin/docker-compose | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 mint/conf/bin/docker-compose diff --git a/mint/conf/bin/docker-compose b/mint/conf/bin/docker-compose new file mode 100755 index 0000000..7e7d2a1 --- /dev/null +++ b/mint/conf/bin/docker-compose @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +set -euo pipefail + +docker compose $@ -- 2.45.2