mirror of
https://github.com/docker/cli.git
synced 2026-01-16 20:22:36 +03:00
Signed-off-by: Clinton Kitson <clintonskitson@gmail.com> Upstream-commit: 6b8129d1fe9b1428833e1c38e463a5a4cc204390 Component: engine
12 lines
334 B
Go
12 lines
334 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/image"
|
|
"github.com/docker/docker/runconfig"
|
|
)
|
|
|
|
// createContainerPlatformSpecificSettings performs platform specific container create functionality
|
|
func createContainerPlatformSpecificSettings(container *Container, config *runconfig.Config, img *image.Image) error {
|
|
return nil
|
|
}
|