mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8db740a38e
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
22 lines
424 B
Go
22 lines
424 B
Go
package native
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
type info struct {
|
|
ID string
|
|
driver *driver
|
|
}
|
|
|
|
// IsRunning is determined by looking for the
|
|
// .nspid file for a container. If the file exists then the
|
|
// container is currently running
|
|
func (i *info) IsRunning() bool {
|
|
p := filepath.Join(i.driver.root, "containers", i.ID, "root", ".nspid")
|
|
if _, err := os.Stat(p); err == nil {
|
|
return true
|
|
}
|
|
return false
|
|
}
|