[Docker] Docker Machine intro

时间:2023-03-08 17:40:50
[Docker] Docker Machine intro

List all the docker machine:

docker-machine ls

[Docker] Docker Machine intro

Can check 'ip' and 'status':

docker-machine ip default
docker-machine status default

[Docker] Docker Machine intro

List the running container we have:

docker ps

[Docker] Docker Machine intro

Switch to another docker machine: defualt

docker-machine env default

[Docker] Docker Machine intro

List all the 'docker-machine' commons:

docker-machine

[Docker] Docker Machine intro

Start and stop the docker machine:

docker-machine stop default
docker-machine start default

[Docker] Docker Machine intro