Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 6121a8429b9d3a6d20e900c521c2f50fff5db406 Component: engine
10 lines
285 B
Go
10 lines
285 B
Go
package daemon
|
|
|
|
import "github.com/docker/docker/daemon/config"
|
|
|
|
// reloadPlatform updates configuration with platform specific options
|
|
// and updates the passed attributes
|
|
func (daemon *Daemon) reloadPlatform(config *config.Config, attributes map[string]string) error {
|
|
return nil
|
|
}
|