Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. //Enable Experimental Features in Dockerd daemon.conf
  2. $configfile = @"
  3. {
  4. "experimental": true
  5. }
  6. "@
  7.  
  8. $configfile|Out-File -FilePath C:\ProgramData\docker\config\daemon.json -Encoding ascii –Force
  9.  
  10. //install LCOW Linux kernel
  11. Invoke-WebRequest -Uri "https://github.com/linuxkit/lcow/releases/download/v4.14.35-v0.3.9/release.zip" -UseBasicParsing -OutFile release.zip
  12.  
  13. Expand-Archive release.zip -Force -DestinationPath "$Env:ProgramFiles\Linux Containers\."
  14.  
  15. restart-service docker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement