| 330 | } |
| 331 | |
| 332 | type 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 | |
| 351 | func (d *dockerRunnable) Name() string { |
| 352 | return d.name |
nothing calls this directly
no outgoing calls
no test coverage detected