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:
searchsolaris 2017-08-03 18:49:32 -04:00 committed by Misty Stanley-Jones
parent 9b81c79662
commit 160c2a309e
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ The following example sets the log driver to `syslog` and sets the
{
"log-driver": "syslog",
"log-opts": {
"syslog": "udp://1.2.3.4:1111"
"syslog-address": "udp://1.2.3.4:1111"
}
}
```