infrastructure/ansible/plays/templates/docker-daemon.json.j2

14 lines
285 B
Plaintext
Raw Normal View History

2023-07-27 01:49:43 +02:00
{% raw %}
2023-04-17 17:47:15 +02:00
{
2023-07-27 01:47:57 +02:00
"log-driver": "json-file",
"log-opts": {
"max-size": "100m",
"tag": "{{.ImageName}}|{{.Name}}|{{.FullID}}"
},
2023-04-17 17:47:15 +02:00
"bip": "10.254.1.1/24",
2024-01-13 14:19:00 +01:00
"default-address-pools":[{"base":"10.254.0.0/17","size":26}],
"experimental": true,
"ip6tables": true
2023-04-17 17:47:15 +02:00
}
2023-07-27 01:49:43 +02:00
{% endraw %}