ContainerByID returns the container with the given ID
(cid string)
| 60 | |
| 61 | // ContainerByID returns the container with the given ID |
| 62 | func (daemon *DockerDaemon) ContainerByID(cid string) *Container { |
| 63 | return daemon.store().Get(cid) |
| 64 | } |
| 65 | |
| 66 | // DiskUsage returns reported Docker disk usage |
| 67 | func (daemon *DockerDaemon) DiskUsage() (dockerTypes.DiskUsage, error) { |