S.Chandra Sekhar
S.Chandra Sekhar

Reputation: 503

How to install docker using puppet bolt task on windows machne

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

Answers (1)

Heston Hoffman
Heston Hoffman

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

Related Questions