DockerContainer implements Instance interface
| 55 | |
| 56 | // DockerContainer implements Instance interface |
| 57 | type DockerContainer struct { |
| 58 | t testing.TB |
| 59 | client *dockerclient.Client |
| 60 | ImageName string |
| 61 | ENV []string |
| 62 | Cmd []string |
| 63 | ContainerId string |
| 64 | ContainerName string |
| 65 | ContainerJSON dockercontainer.InspectResponse |
| 66 | containerInspected bool |
| 67 | keepForDebugging bool |
| 68 | } |
| 69 | |
| 70 | func (d *DockerContainer) PullImage() (err error) { |
| 71 | if d == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected