summarylogtreecommitdiffstats
path: root/kata2-runtime.install
blob: cdf8a5a82615d1a161fe1a6062c22fa44fba1eff (plain)
1
2
3
4
5
6
7
8
9
post_install() {
  cat <<EOF
Due to Docker hard-codied usage of OCI runtime shim v1, the closest replacement
is to call containerd CLI, for example as follows:

  ctr image pull docker.io/library/alpine:edge
  ctr run --rm -t --runtime io.containerd.kata.v2 docker.io/library/alpine:edge example-container-name date
EOF
}