We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19c67c7 commit 057fd0eCopy full SHA for 057fd0e
1 file changed
.github/workflows/cd.yml
@@ -26,7 +26,9 @@ jobs:
26
27
echo "🔧 Ensuring Docker Compose is installed..."
28
if ! docker compose version > /dev/null 2>&1; then
29
- apt-get update && apt-get install -y docker-compose-plugin
+ mkdir -p /usr/local/lib/docker/cli-plugins
30
+ curl -SL https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64 -o /usr/local/lib/docker/cli-plugins/docker-compose
31
+ chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
32
fi
33
34
echo "🏗️ Building containers..."
0 commit comments