mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
16 lines
405 B
Go
16 lines
405 B
Go
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
|
|
}
|