From 16ba4698d89ad69f193ad4674a211cbaa8795e4f Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Sat, 28 Oct 2017 12:09:21 -0400 Subject: [PATCH] update crio Signed-off-by: Jess Frazelle --- crio/Dockerfile | 1 + crio/policy.json | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 crio/policy.json diff --git a/crio/Dockerfile b/crio/Dockerfile index b30500e..49c8cb6 100644 --- a/crio/Dockerfile +++ b/crio/Dockerfile @@ -110,5 +110,6 @@ RUN buildDeps=' \ && apt-get purge -y --auto-remove $buildDeps COPY net.d /etc/cni/net.d +COPY policy.json /etc/containers/policy.json CMD [ "crio" ] diff --git a/crio/policy.json b/crio/policy.json new file mode 100644 index 0000000..2063779 --- /dev/null +++ b/crio/policy.json @@ -0,0 +1,4 @@ +{ + "default": [{"type": "insecureAcceptAnything"}], + "transports": { "docker-daemon": { "": [{"type":"insecureAcceptAnything"}] } } +}