Add docker daemon.json

This commit is contained in:
Sparky
2025-10-09 19:56:38 +01:00
parent 56a04e5456
commit 251d829a88
2 changed files with 14 additions and 0 deletions

11
daemon.json Normal file
View File

@@ -0,0 +1,11 @@
{
"data-root": "/mnt/data/docker",
"log-driver": "json-file",
"log-opts": {
"max-size": "10m",
"max-file": "3"
},
"default-address-pools": [
{"base":"10.0.0.0/8","size":24}
]
}

View File

@@ -21,3 +21,6 @@
- source: coolify - source: coolify
target: /data/coolify target: /data/coolify
delete: true delete: true
- source: daemon.json
target: /etc/docker/daemon.json
delete: true