summarylogtreecommitdiffstats
path: root/kata2-runtime.install
diff options
context:
space:
mode:
Diffstat (limited to 'kata2-runtime.install')
-rw-r--r--kata2-runtime.install9
1 files changed, 9 insertions, 0 deletions
diff --git a/kata2-runtime.install b/kata2-runtime.install
new file mode 100644
index 000000000000..cdf8a5a82615
--- /dev/null
+++ b/kata2-runtime.install
@@ -0,0 +1,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
+}