WSL怎么用docker

以前写的docker安装流程

WSL里装了docker,但是运行的时候会报

docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.                See 'docker run --help'. 

解决办法:

运行

docker -H localhost:2375 images

可以把这句添加到环境中

export DOCKER_HOST=localhost:2375

but! 这个时候还是不能用的,是因为这还是在windows下,需要装windows的客户端。 对右下角图标右键点setting。然后勾上这个,就可以啦!

wsl_docker