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"}] } } +}