docker api

This commit is contained in:
Stefan Schwarz 2020-12-28 02:22:33 +01:00
parent b6a86b5401
commit 4f41e275d6
836 changed files with 262259 additions and 4 deletions

View file

@ -0,0 +1,13 @@
// +build linux aix
// +build !js
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TCGETS
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}