mirror of https://github.com/docker/cli.git
Merge pull request #1528 from thaJeztah/add_logging_driver_example
Update daemon.json example to show that log-opts must be a string
This commit is contained in:
commit
5931fb4276
|
@ -1305,8 +1305,13 @@ This is a full example of the allowed configuration options on Linux:
|
||||||
"storage-opts": [],
|
"storage-opts": [],
|
||||||
"labels": [],
|
"labels": [],
|
||||||
"live-restore": true,
|
"live-restore": true,
|
||||||
"log-driver": "",
|
"log-driver": "json-file",
|
||||||
"log-opts": {},
|
"log-opts": {
|
||||||
|
"max-size": "10m",
|
||||||
|
"max-files":"5",
|
||||||
|
"labels": "somelabel",
|
||||||
|
"env": "os,customer"
|
||||||
|
},
|
||||||
"mtu": 0,
|
"mtu": 0,
|
||||||
"pidfile": "",
|
"pidfile": "",
|
||||||
"cluster-store": "",
|
"cluster-store": "",
|
||||||
|
|
Loading…
Reference in New Issue