1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libnetwork/testutils/net.go

12 lines
207 B
Go
Raw Normal View History

package testutils
import (
"os"
)
// IsRunningInContainer returns whether the test is running inside a container.
func IsRunningInContainer() bool {
_, err := os.Stat("/.dockerenv")
return err == nil
}