If you want to provision or manage docker host remotely from your local computer, you will need to install docker-machine. This article i will show you how to install docker-machine on ubuntu.
Step by step how to install docker-machine on ubuntu 16.04
- download docker-machine binary using wget
- rename the docker-machine binary
- make the docker-machine binary executable
- copy the docker-machine to the bin directory
wget https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-$(uname -s)-$(uname -m)
mv docker-machine-Linux-x86_64 docker-machine
chmod +x docker-machine
sudo mv docker-machine /usr/local/bin
You can try run docker-machine now, simply show the version like this:
docker-machine version
No comments:
Post a Comment