Caja de herramientas Docker is cool! It is a single point download that gives you everything to get started with Docker. But it comes with other tools like VirtualBox and Kitematic which you may not want. So what do you do?
You install the tools that you like using CLI. This blog shows how to do exactly that. All the commands are installed in the /usr/bin/local
directorio.
Latest Docker CLI
This command downloads and installs the latest Docker CLI.
1 2 |
rizo -L https://get.docker.com/builds/Darwin/x86_64/docker-latest > /usr/local/bin/docker && chmod +x /usr/local/papelera/docker |
Another simpler way to install and manage different versions of CLI are using Docker Version Manager or dvm. DVM provides a decent set of commands:
1 2 3 4 |
~ > dvm alias ayuda lista-alias ls-alias uninstall utilice actual instale lista-remoto ls-remoto unload versión deactivate lista ls unalias actualizar que |
Latest Docker Machine
This command downloads and installs the latest Máquina Docker.
1 2 |
rizo -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-Darwin-x86_64 > /usr/local/bin/docker-machine && chmod +x /usr/local/papelera/docker-máquina |
Latest Docker Compose
This command downloads and installs the latest Docker Compose.
1 2 |
rizo -L https://github.com/docker/compose/releases/download/1.6.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose && chmod +x /usr/local/papelera/docker-componer |
¡Que aproveche!