MCPcopy Create free account
hub / github.com/docker/compose / Read

Method Read

pkg/compose/container.go:33–35  ·  view source on GitHub ↗

Read implement io.ReadCloser

(p []byte)

Source from the content-addressed store, hash-verified

31
32// Read implement io.ReadCloser
33func (l ContainerStdout) Read(p []byte) (n int, err error) {
34 return l.Reader.Read(p)
35}
36
37// Close implement io.ReadCloser
38func (l ContainerStdout) Close() error {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected