setup_windows.go 426 B

12345678910111213
  1. // +build windows
  2. package initlayer
  3. // Setup populates a directory with mountpoints suitable
  4. // for bind-mounting dockerinit into the container. The mountpoint is simply an
  5. // empty file at /.dockerinit
  6. //
  7. // This extra layer is used by all containers as the top-most ro layer. It protects
  8. // the container from unwanted side-effects on the rw layer.
  9. func Setup(initLayer string, rootUID, rootGID int) error {
  10. return nil
  11. }