Skip to content

Instantly share code, notes, and snippets.

@alexellis
Created December 6, 2016 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexellis/04d5fcc82ad5e9604bab0b6a0cf92bd9 to your computer and use it in GitHub Desktop.
Save alexellis/04d5fcc82ad5e9604bab0b6a0cf92bd9 to your computer and use it in GitHub Desktop.
Open Docker named-pipe on Windows
stop-service docker
dockerd --unregister-service
dockerd --register-service -H npipe:// -H 0.0.0.0:2375
start-service docker
New-NetFirewallRule -Name "Dockerinsecure2375" -DisplayName "Docker insecure on TCP/2375" -Protocol tcp -LocalPort 2375 -Action Allow -Enabled True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment