mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
29 lines
710 B
Go
29 lines
710 B
Go
|
// +build !experimental
|
||
|
|
||
|
package daemon
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/docker/docker/pkg/idtools"
|
||
|
"github.com/docker/docker/pkg/system"
|
||
|
"github.com/docker/docker/runconfig"
|
||
|
)
|
||
|
|
||
|
func setupRemappedRoot(config *Config) ([]idtools.IDMap, []idtools.IDMap, error) {
|
||
|
return nil, nil, nil
|
||
|
}
|
||
|
|
||
|
func setupDaemonRoot(config *Config, rootDir string, rootUID, rootGID int) error {
|
||
|
config.Root = rootDir
|
||
|
// Create the root directory if it doesn't exists
|
||
|
if err := system.MkdirAll(config.Root, 0700); err != nil && !os.IsExist(err) {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (daemon *Daemon) verifyExperimentalContainerSettings(hostConfig *runconfig.HostConfig, config *runconfig.Config) ([]string, error) {
|
||
|
return nil, nil
|
||
|
}
|