blob: 3855c7830e69a1cfdbbb3a5dabdf00034e9bc4ee [file] [log] [blame]
// +build linux,!seccomp
package daemon // import "github.com/docker/docker/daemon"
import (
"fmt"
"github.com/docker/docker/container"
"github.com/opencontainers/runtime-spec/specs-go"
)
var supportsSeccomp = false
func setSeccomp(daemon *Daemon, rs *specs.Spec, c *container.Container) error {
if c.SeccompProfile != "" && c.SeccompProfile != "unconfined" {
return fmt.Errorf("seccomp profiles are not supported on this daemon, you cannot specify a custom seccomp profile")
}
return nil
}