cff4f20c44
The github.com/containerd/containerd/log package was moved to a separate module, which will also be used by upcoming (patch) releases of containerd. This patch moves our own uses of the package to use the new module. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
23 lines
629 B
Go
23 lines
629 B
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containerd/log"
|
|
swarmtypes "github.com/docker/docker/api/types/swarm"
|
|
)
|
|
|
|
// SetContainerConfigReferences sets the container config references needed
|
|
func (daemon *Daemon) SetContainerConfigReferences(name string, refs []*swarmtypes.ConfigReference) error {
|
|
if !configsSupported() && len(refs) > 0 {
|
|
log.G(context.TODO()).Warn("configs are not supported on this platform")
|
|
return nil
|
|
}
|
|
|
|
c, err := daemon.GetContainer(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.ConfigReferences = append(c.ConfigReferences, refs...)
|
|
return nil
|
|
}
|