File tree 3 files changed +89
-0
lines changed
3 files changed +89
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' master'
7
+ pull_request :
8
+ branches :
9
+ - ' master'
10
+
11
+ jobs :
12
+ test :
13
+ runs-on : ubuntu-latest
14
+ strategy :
15
+ matrix :
16
+ release : [latest, v2.2.0]
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@v2
20
+
21
+ - name : Install Compose
22
+ uses : ./
23
+ with :
24
+ version : ${{ matrix.release }}
25
+
26
+ - name : Test installation
27
+ run : |
28
+ docker compose version
29
+ docker-compose --version
Original file line number Diff line number Diff line change
1
+ # Install Docker Compose
2
+
3
+ This GitHub Action installs Docker Compose v2
4
+
5
+ ## Usage
6
+
7
+ ``` yaml
8
+ jobs :
9
+ my-awesome-job :
10
+ steps :
11
+ - name : Install Compose
12
+ uses : ndeloof/install-docker-compose
13
+ with :
14
+ version : v2.1.0 # defaults to 'latest'
15
+ legacy : true # will also install in PATH as `docker-compose`
16
+ ` ` `
Original file line number Diff line number Diff line change
1
+ # https://help.github.com/en/articles/metadata-syntax-for-github-actions
2
+ name : Docker Compose Setup
3
+ description : Install Docker Compose
4
+ branding :
5
+ icon : anchor
6
+ color : blue
7
+
8
+ inputs :
9
+ version :
10
+ description : ' Compose release (example: v2.2.0)'
11
+ required : false
12
+ default : latest
13
+ legacy :
14
+ description : ' Also install as legacy "docker-compose"'
15
+ required : false
16
+ default : true
17
+
18
+ runs :
19
+ using : ' composite'
20
+ steps :
21
+ - name : install
22
+ shell : bash
23
+ run : |
24
+ set -x
25
+ set -e
26
+ arch="$(uname)-$(uname -m)"
27
+ flavor=$(echo $arch | tr '[:upper:]' '[:lower:]' )
28
+
29
+ DOWNLOAD_URL="https://github.com/docker/compose/releases/download/${{ inputs.version }}/docker-compose-${flavor}"
30
+ if [[ "${{ inputs.version }}" == "latest" ]]; then
31
+ DOWNLOAD_URL=$(curl -fL https://api.github.com/repos/docker/compose/releases/latest | jq -r '.assets[] | select(.name == "docker-compose-linux-x86_64") | .browser_download_url')
32
+ fi
33
+
34
+ echo "Download Compose ${{ inputs.version }} for ${flavor} from ${DOWNLOAD_URL}"
35
+ mkdir -p ~/.docker/cli-plugins/
36
+ curl -fsSL "$DOWNLOAD_URL" -o ~/.docker/cli-plugins/docker-compose
37
+ chmod +x ~/.docker/cli-plugins/docker-compose
38
+ - name : alias docker-compose
39
+ if : ${{ inputs.legacy }}
40
+ shell : bash
41
+ run : |
42
+ mkdir -p ~/.local/bin/
43
+ ln -s ~/.docker/cli-plugins/docker-compose ~/.local/bin/docker-compose
44
+
You can’t perform that action at this time.
0 commit comments