Reduce amount of docker logs on the runner

This commit is contained in:
Mikhail f. Shiryaev 2022-06-27 14:44:59 +02:00
parent 7297e468d5
commit 9dffe573bb
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -57,6 +57,11 @@ cat <<EOT > /etc/docker/daemon.json
{
"ipv6": true,
"fixed-cidr-v6": "2001:db8:1::/64",
"log-driver": "json-file",
"log-opts": {
"max-file": "5",
"max-size": "1000m"
},
"insecure-registries" : ["dockerhub-proxy.dockerhub-proxy-zone:5000"],
"registry-mirrors" : ["http://dockerhub-proxy.dockerhub-proxy-zone:5000"]
}