Reputation: 157
how can I run a command via docker machine? it's possible? while automating the creation of servers I want to run the installation of some software on the hosts.
Upvotes: 3
Views: 1378
Reputation: 6347
You can run custom commands on your machines using command docker-machine ssh <machine name> <command>
.
Upvotes: 5