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