kubeasz/roles/docker/templates/daemon.json.j2

20 lines
507 B
Plaintext
Raw Normal View History

2018-08-12 16:47:39 +08:00
{
"data-root": "{{ STORAGE_DIR }}",
"exec-opts": ["native.cgroupdriver=systemd"],
{% if ENABLE_MIRROR_REGISTRY %}
"registry-mirrors": {{ REG_MIRRORS }},
{% endif %}
{% if ENABLE_REMOTE_API %}
"hosts": ["tcp://0.0.0.0:2376", "unix:///var/run/docker.sock"],
{% endif %}
"insecure-registries": {{ INSECURE_REG }},
2018-08-12 16:47:39 +08:00
"max-concurrent-downloads": 10,
"log-driver": "json-file",
"log-level": "warn",
2018-08-12 16:47:39 +08:00
"log-opts": {
"max-size": "15m",
"max-file": "3"
2018-08-29 22:12:02 +08:00
},
"storage-driver": "overlay2"
2018-08-12 16:47:39 +08:00
}