mirror of https://github.com/docker/docker-py.git
Merge pull request #724 from bedwards/bedwards-fluentd-patch
Update types.py to support fluentd logging driver
This commit is contained in:
commit
a6064e356e
|
@ -6,9 +6,11 @@ class LogConfigTypesEnum(object):
|
|||
'json-file',
|
||||
'syslog',
|
||||
'journald',
|
||||
'gelf',
|
||||
'fluentd',
|
||||
'none'
|
||||
)
|
||||
JSON, SYSLOG, JOURNALD, NONE = _values
|
||||
JSON, SYSLOG, JOURNALD, GELF, FLUENTD, NONE = _values
|
||||
|
||||
|
||||
class DictType(dict):
|
||||
|
|
Loading…
Reference in New Issue