We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b387390 commit eadcea4Copy full SHA for eadcea4
.github/workflows/im-build-test-deploy.yaml
@@ -182,6 +182,14 @@ jobs:
182
echo "VERSION=$VERSION"
183
184
# TODO: Split here... "Build"
185
+ - name: Pin Docker Compose to version 2.37.1 (delete this step once we're above version 2.36.0 by default)
186
+ run: |
187
+ docker compose version
188
+ sudo rm -f /usr/local/bin/docker-compose
189
+ mkdir -p ~/.docker/cli-plugins/
190
+ curl -SL https://github.com/docker/compose/releases/download/v2.37.1/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
191
+ chmod +x ~/.docker/cli-plugins/docker-compose
192
+
193
- name: Build image
194
run: make docker-image tag=$VERSION
195
0 commit comments