Skip to content

Commit

Permalink
Downgrade docker-compose to resolve compatibility issues with docspac…
Browse files Browse the repository at this point in the history
…e.yml
  • Loading branch information
evgeniy-antonyuk committed Nov 6, 2024
1 parent fbafcda commit 34b2726
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci-oci-docker-install.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Install OneClickInstall Docker

on:
push:
branches:
- 'bugfix/oci-hotfix'
pull_request:
types: [opened, reopened, synchronize]
paths:
Expand All @@ -21,7 +24,7 @@ jobs:
- name: Determine Branch Name
run: |
BRANCH_NAME=$([ "${{ github.event_name }}" = "pull_request" ] && echo "${{ github.event.pull_request.head.ref }}" || echo "${GITHUB_REF#refs/heads/}")
echo "BRANCH_NAME=${BRANCH_NAME:-master}" >> $GITHUB_ENV
echo "BRANCH_NAME=${BRANCH_NAME:-bugfix/oci-hotfix}" >> $GITHUB_ENV
- name: Free Disk Space
run: |
Expand Down
2 changes: 1 addition & 1 deletion install/OneClickInstall/install-Docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ install_package () {
}

install_docker_compose () {
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/bin/docker-compose
curl -L "https://github.com/docker/compose/releases/download/v2.30.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/bin/docker-compose
chmod +x /usr/bin/docker-compose
}

Expand Down

0 comments on commit 34b2726

Please sign in to comment.