mirror of https://github.com/docker/docs.git
Update syslog.md (#4076)
Broken example. Update the example from: { "log-driver": "syslog", "log-opts": { "syslog": "udp://1.2.3.4:1111" } } To: { "log-driver": "syslog", "log-opts": { "syslog-address": "udp://1.2.3.4:1111" } }
This commit is contained in:
parent
9b81c79662
commit
160c2a309e
|
@ -46,7 +46,7 @@ The following example sets the log driver to `syslog` and sets the
|
||||||
{
|
{
|
||||||
"log-driver": "syslog",
|
"log-driver": "syslog",
|
||||||
"log-opts": {
|
"log-opts": {
|
||||||
"syslog": "udp://1.2.3.4:1111"
|
"syslog-address": "udp://1.2.3.4:1111"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue