PHP
·
发表于 6年以前
·
阅读量:8496
func IsDockerContainer() bool {
if _, err := os.Stat("/.dockerenv"); err == nil {
return true
}
return false
}