Open
Description
With the addition of rkt (#858), we should no longer make the assumption that docker is the container runtime. We should try to isolate any API fields, configuration values, and dependencies into runtime-specific sub-structures / modules.
Examples from the API:
AllDockerContainers(query *info.ContainerInfoRequest) (map[string]info.ContainerInfo, error)
DockerContainer(dockerName string, query *info.ContainerInfoRequest) (info.ContainerInfo, error)
DockerInfo() (info.DockerStatus, error)
DockerImages() ([]info.DockerImage, error)