1234567891011121314151617181920212223242526 |
- //go:build linux && !seccomp
- // +build linux,!seccomp
- package daemon // import "github.com/docker/docker/daemon"
- import (
- "context"
- "fmt"
- "github.com/containerd/containerd/containers"
- coci "github.com/containerd/containerd/oci"
- "github.com/docker/docker/container"
- dconfig "github.com/docker/docker/daemon/config"
- )
- const supportsSeccomp = false
- // WithSeccomp sets the seccomp profile
- func WithSeccomp(daemon *Daemon, c *container.Container) coci.SpecOpts {
- return func(ctx context.Context, _ coci.Client, _ *containers.Container, s *coci.Spec) error {
- if c.SeccompProfile != "" && c.SeccompProfile != dconfig.SeccompProfileUnconfined {
- return fmt.Errorf("seccomp profiles are not supported on this daemon, you cannot specify a custom seccomp profile")
- }
- return nil
- }
- }
|