Merge pull request #217 from cpuguy83/add_log_attrs

Add `Details` field for logs
This commit is contained in:
Vincent Demeester 2016-04-29 17:52:53 +02:00
Родитель 87de7b6833 9cd2047b45
Коммит 7542c3decd
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -35,6 +35,10 @@ func (cli *Client) ContainerLogs(ctx context.Context, container string, options
query.Set("timestamps", "1")
}
if options.Details {
query.Set("details", "1")
}
if options.Follow {
query.Set("follow", "1")
}

Просмотреть файл

@ -57,6 +57,7 @@ type ContainerLogsOptions struct {
Timestamps bool
Follow bool
Tail string
Details bool
}
// ContainerRemoveOptions holds parameters to remove containers.