github.com/darciopacifico/docker@v1.9.0-rc1/daemon/archive_windows.go (about)

     1  package daemon
     2  
     3  // checkIfPathIsInAVolume checks if the path is in a volume. If it is, it
     4  // cannot be in a read-only volume. If it  is not in a volume, the container
     5  // cannot be configured with a read-only rootfs.
     6  //
     7  // This is a no-op on Windows which does not support volumes.
     8  func checkIfPathIsInAVolume(container *Container, absPath string) (bool, error) {
     9  	return false, nil
    10  }