We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 805ab12 commit 2e1b128Copy full SHA for 2e1b128
1 file changed
.github/workflows/main.yml
@@ -79,6 +79,25 @@ jobs:
79
./hack/install_kustomize.sh /usr/local/bin/
80
kustomize version
81
82
+ - name: Install Docker
83
+ run: |
84
+ sudo apt-get install \
85
+ apt-transport-https \
86
+ ca-certificates \
87
+ curl \
88
+ gnupg-agent \
89
+ software-properties-common
90
+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
91
+
92
+ sudo add-apt-repository \
93
+ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
94
+ $(lsb_release -cs) \
95
+ stable"
96
97
+ sudo apt-get update
98
+ sudo apt-get install docker-ce docker-ce-cli containerd.io
99
+ docker --version
100
101
- name: Create openebs namespace and install NDM
102
run: |
103
chmod +x hack/install_ndm.sh
0 commit comments