Reputation: 19402
According to the official docker docs,
Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with docker-machine commands.
Since docker engine can be directly installed on Linux, my question is whether there are any use cases where docker-machine
is actually needed when working on a Linux environment
Upvotes: -1
Views: 86
Reputation: 1600
If you want to just run small tests on your machine, you should not need it.
It becomes useful when you want to provision other hosts, it may be a virtual machine running on your computer or a remote host.
Why would you want to do this? I can think of 2 cases.
Upvotes: 2