Community maintained Docker config for the knot server

policy config

+22
+22
.tangled/workflows/publish.yml
··· 118 118 exit 1 119 119 fi 120 120 121 + # Create skopeo trust policy file 122 + mkdir -p ~/.config/containers /etc/containers 123 + cat > ~/.config/containers/policy.json << EOF 124 + { 125 + "default": [ 126 + { 127 + "type": "insecureAcceptAnything" 128 + } 129 + ], 130 + "transports": { 131 + "docker-daemon": { 132 + "": [ 133 + { 134 + "type": "insecureAcceptAnything" 135 + } 136 + ] 137 + } 138 + } 139 + } 140 + EOF 141 + cp ~/.config/containers/policy.json /etc/containers/policy.json 2>/dev/null || true 142 + 121 143 # Export buildah image to docker format 122 144 buildah push localhost/$DOCKER_USERNAME/$DOCKER_REPO:$TAG docker-archive:image-$TAG.tar 123 145 buildah push localhost/$DOCKER_USERNAME/$DOCKER_REPO:latest docker-archive:image-latest.tar