Answers for "install docker in windows"

2

how to check if i have docker installed

$ docker -v
Docker version 1.7.0, build 0baf609
$ echo $?
0
Posted by: Guest on May-20-2020
2

install docker

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
usermod -aG docker $USER
newgrp docker
Posted by: Guest on October-07-2021
3

docker install

$ sudo apt-get remove docker docker-engine docker.io containerd runc
Posted by: Guest on May-07-2020
0

docker install

$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh
Posted by: Guest on January-11-2021
0

install docker

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
usermod -aG docker $USER
newgrp docker
Posted by: Guest on August-23-2021
0

can i run docker on windows

Yes
Posted by: Guest on June-15-2020

Code answers related to "install docker in windows"

Browse Popular Code Answers by Language