Reputation: 503
I want to install docker
on windows machine using bolt task
command.
Is there any command similar to below for installing docker
on windows machine.
bolt task run package action=install name=docker
Kindly suggest.
Upvotes: 0
Views: 185
Reputation: 91
Yes, use bolt task run package action=install name=docker --targets <TARGET>
As a commentor suggested, you'll need a package manager (Chocolatey) installed on your Windows machine for the package task to interact with. Check out this doc - it gives instructions on writing a plan that installs Chocolatey and then uses the package task to install a package.
Upvotes: 1