Merge pull request #1806 from sentinelt/master

fix #1607; use container creation time provided by Docker handler
This commit is contained in:
David Ashpole 2017-12-20 11:25:35 -08:00 committed by GitHub
commit 9ffa37396f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -391,6 +391,7 @@ func (self *dockerContainerHandler) GetSpec() (info.ContainerSpec, error) {
}
spec.Envs = self.envs
spec.Image = self.image
spec.CreationTime = self.creationTime
return spec, err
}