2017-02-07 21:33:23 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2017-07-06 14:28:13 +00:00
|
|
|
"github.com/docker/docker/api/types"
|
2017-02-07 21:33:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Inspect returns the container informations
|
|
|
|
func (p *Project) Inspect(containerID string) (types.ContainerJSON, error) {
|
|
|
|
container, err := p.Client.ContainerInspect(context.Background(), containerID)
|
|
|
|
if err != nil {
|
|
|
|
return types.ContainerJSON{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return container, nil
|
|
|
|
}
|