File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -23,5 +23,17 @@ sudo mv ./kind /usr/local/bin/kind
2323sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq
2424sudo chmod +x /usr/bin/yq
2525
26+ # docker model-plugin
27+ sudo install -m 0755 -d /etc/apt/keyrings
28+ sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
29+ sudo chmod a+r /etc/apt/keyrings/docker.asc
30+ echo \
31+ " deb [arch=$( dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
32+ $( . /etc/os-release && echo " ${UBUNTU_CODENAME:- $VERSION_CODENAME } " ) stable" | \
33+ sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
34+ sudo apt-get update
35+ sudo apt-get install -y docker-model-plugin
36+ docker model list
37+
2638cd ..
27- rm -rf install-more-tools
39+ rm -rf install-more-tools
You can’t perform that action at this time.
0 commit comments