Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker could not find plugin bridge in v1 plugin registry: plugin not found

I am trying to run this command with graphcool:

graphcool-framework local up

And I am getting this error from Docker,

docker   could not find plugin bridge in v1 plugin registry: plugin not found

My version of Docker is version 18.03.0-ce

What is the problem and how can I solve it?

like image 652
P3P5 Avatar asked Apr 01 '18 22:04

P3P5


Video Answer


2 Answers

If you are using Windows; please use docker network create --driver nat network-name

like image 132
pasindupa Avatar answered Oct 19 '22 09:10

pasindupa


Are you using Docker for Windows and switched to using Windows containers?

The bridge driver isn't available for Windows containers and nat is the equivalent.

I'm not familiar with graphcool but it could be that its based on a Linux image, that references the bridge driver.

See if graphcool have a windows docker image (one that uses the nat driver instead of bridge).

like image 27
JoeBla Avatar answered Oct 19 '22 10:10

JoeBla