github.com/jiasir/docker@v1.3.3-0.20170609024000-252e610103e7/daemon/initlayer/setup_windows.go (about)

     1  // +build windows
     2  
     3  package initlayer
     4  
     5  import (
     6  	"github.com/docker/docker/pkg/idtools"
     7  )
     8  
     9  // Setup populates a directory with mountpoints suitable
    10  // for bind-mounting dockerinit into the container. The mountpoint is simply an
    11  // empty file at /.dockerinit
    12  //
    13  // This extra layer is used by all containers as the top-most ro layer. It protects
    14  // the container from unwanted side-effects on the rw layer.
    15  func Setup(initLayer string, rootIDs idtools.IDPair) error {
    16  	return nil
    17  }