Correct example of daemon.json log-opts config (#3998)

* Update docs so that log-opts takes map (`{}`) instead of array (`[]`)
This commit is contained in:
Jochen Preusche 2017-08-01 20:54:40 +02:00 committed by Misty Stanley-Jones
parent 4ab7d191a8
commit c9f130a3c7
1 changed files with 4 additions and 4 deletions

View File

@ -42,10 +42,10 @@ example sets two configurable options on the `json-file` logging driver:
```json
{
"log-driver": "json-file",
"log-opts": [
"labels=production_status",
"env=os,customer"
]
"log-opts": {
"labels": "production_status",
"env": "os,customer"
}
}
```