MCPcopy Create free account
hub / github.com/efficientgo/e2e / dockerRunnable

Struct dockerRunnable

env_docker.go:332–349  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332type dockerRunnable struct {
333 env *DockerEnvironment
334 name string
335 ports map[string]int
336
337 logger Logger
338 opts StartOptions
339 waitBackoffReady *backoff.Backoff
340
341 // usedNetworkName is docker NetworkName used to start this container.
342 // If empty it means container is stopped.
343 usedNetworkName string
344
345 // hostPorts Maps port name to dynamically binded local ports.
346 hostPorts map[string]int
347
348 extensions map[any]any
349}
350
351func (d *dockerRunnable) Name() string {
352 return d.name

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected