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

26 lines
506 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-15 20:43:13 +01:00
"default-address-pools": [
{ "base":"10.254.0.0/17","size":26 },
{ "base": "fd64:2::/104", "size": 112 }
],
"default-ulimits": {
"nofile": {
"Name": "nofile",
"Hard": 65535,
"Soft": 65535
}
},
2024-01-13 14:19:00 +01:00
"experimental": true,
2024-01-15 20:43:13 +01:00
"ipv6": true,
"fixed-cidr-v6": "fd64:1::/64",
2024-01-13 14:19:00 +01:00
"ip6tables": true
2023-04-17 17:47:15 +02:00
}
2023-07-27 01:49:43 +02:00
{% endraw %}