This website requires JavaScript.
Explore
Help
Register
Sign In
Guest24897
/
DockerCLI
mirror of
https://github.com/docker/cli.git
Watch
1
Star
0
Fork
You've already forked DockerCLI
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
c264374cb8
DockerCLI
/
vendor
/
github.com
/
moby
/
buildkit
/
util
/
system
/
seccomp_noseccomp.go
9 lines
103 B
Go
Raw
Normal View
History
Unescape
Escape
[20.10] vendor: github.com/moby/buildkit 3a1eeca59a9263613d996ead67d53a4b7d45723d (v0.8 branch) To align with docker v20.10.19 full diff: https://github.com/moby/buildkit/compare/8142d66b5ebde79846b869fba30d9d30633e74aa...3a1eeca59a9263613d996ead67d53a4b7d45723d Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-10-17 15:10:14 -04:00
//go:build !seccomp
build: add experimental --no-console flag to support non-tty human-readable output with buildkit Unfortunately, this is for now the only way to see the output of RUN commands when using buildkit. It is equivalent to `DOCKER_BUILDKIT=1 docker build . 2>&1 | cat` Signed-off-by: Tibor Vass <tibor@docker.com>
2018-06-08 21:07:42 -04:00
// +build !seccomp
package
system
func
SeccompSupported
(
)
bool
{
return
false
}