blob: 4e1819b3af1e09ca317d550b0c8460eaddb07d3a [file]
package daemon
import (
swarmtypes "github.com/moby/moby/api/types/swarm"
)
// SetContainerConfigReferences sets the container config references needed
func (daemon *Daemon) SetContainerConfigReferences(name string, refs []*swarmtypes.ConfigReference) error {
c, err := daemon.GetContainer(name)
if err != nil {
return err
}
c.ConfigReferences = append(c.ConfigReferences, refs...)
return nil
}