Skip to content

Commit a6064e3

Browse files
committed
Merge pull request #724 from bedwards/bedwards-fluentd-patch
Update types.py to support fluentd logging driver
2 parents 3cd66b6 + c135266 commit a6064e3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/utils/types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ class LogConfigTypesEnum(object):
66
'json-file',
77
'syslog',
88
'journald',
9+
'gelf',
10+
'fluentd',
911
'none'
1012
)
11-
JSON, SYSLOG, JOURNALD, NONE = _values
13+
JSON, SYSLOG, JOURNALD, GELF, FLUENTD, NONE = _values
1214

1315

1416
class DictType(dict):

0 commit comments

Comments
 (0)