So I am sure this is pretty easy, but I am new to Proget, Buildmaster and Otter. I have a Proget/Buildmaster server setup by using the official docker images. I am trying to build a docker container that the source is hosted in a AzureDev Ops Git repo. My Buildmaster server will clone the repo fine. When it tries to build it says
Using LocalAgent agent on localhost
A Docker client was not detected on this server.
Here is my build script
# Get Source
# Fetch code changes from your source control system in order to build and run tests against them.
{
Git::Checkout-Code();
}
# Compile Project
# Run a familiar build tool such as MSBuild, Maven, make, etc., pull packages & libraries, lint your code, and/or set version numbers.
{
Docker::Build-Image();
}
# Run Tests
# Execute unit tests, static analysis tools, or capture reports.
{
}
# Capture Artifact
# Create a build artifact from the build output once all tests pass.
{
Docker::Tag
(
NewTag: latest
);
}
How do I set up the docker client in the server? Pointing me to the right spot in the documentation would be appreciated, because I can't seem to find where it is.