I want to add below docker log rotation specs into daemon.json file using ansible-playbook
"log-driver": "json-file",
"log-opts": {
"max-size": "1m",
"max-file": "4"
}
What if daemon.json is already present on the node which I am applying the playbook to. I dont want to mess up existing configuration. How do I add above block at line no. 2 ( that is after '{' or before last line i.e. '}' ) ?