forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: downgraded docker-compose version
- Loading branch information
1 parent
6386dfa
commit dc54122
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,14 +50,16 @@ jobs: | |
docker version | ||
docker compose --version | ||
- name: Install Docker 27.3.0 | ||
if: ${{ matrix.os.name == 'mac' }} | ||
run: | | ||
curl -fsSL https://get.docker.com -o get-docker.sh | ||
sh get-docker.sh --version 27.3.0 | ||
# Note: we cannot use Docker Desktop because it has not been licensed for use in GithubActions | ||
- name: Docker installation - Mac | ||
- name: Docker Compose installation - Mac | ||
if: ${{ matrix.os.name == 'mac' }} | ||
run: | | ||
brew install --cask docker | ||
brew unlink docker | ||
brew install [email protected] | ||
brew link --force --overwrite [email protected] | ||
brew install lima docker-compose | ||
limactl start --name=default template://docker | ||
echo "DOCKER_HOST=unix:///Users/runner/.lima/default/sock/docker.sock" >> $GITHUB_ENV | ||
|