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:
|
||||
- name: Install Docker CLI
|
||||
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
|
||||
run: |
|
||||
for i in $(seq 1 10); do
|
||||
for i in $(seq 1 15); do
|
||||
docker -H tcp://localhost:2375 info && break
|
||||
sleep 2
|
||||
done
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue