fix containerd install
This commit is contained in:
parent
581ffff661
commit
460e4344a2
1 changed files with 4 additions and 2 deletions
|
|
@ -22,11 +22,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Install Docker CLI
|
- name: Install Docker CLI
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install -y docker.io
|
apt-get update
|
||||||
|
apt-get remove -y containerd || true
|
||||||
|
apt-get install -y docker.io
|
||||||
|
|
||||||
- name: Wait for Docker daemon
|
- name: Wait for Docker daemon
|
||||||
run: |
|
run: |
|
||||||
for i in $(seq 1 10); do
|
for i in $(seq 1 15); do
|
||||||
docker -H tcp://localhost:2375 info && break
|
docker -H tcp://localhost:2375 info && break
|
||||||
sleep 2
|
sleep 2
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue