Getting Start

Run the following to download the latest container from Docker Hub:

docker pull harbor.sydeng.vmware.com/rcroft/theworks:latest

Run the following to download a specific version from Docker Hub:

docker pull harbor.sydeng.vmware.com/rcroft/theworks:x.y.z

Open an interactive terminal:

docker run --rm -it harbor.sydeng.vmware.com/rcroft/theworks bash

Run a local plan:

cd /path/to/files
docker run --rm -it --name theworks -v $(pwd):/tmp -w /tmp harbor.sydeng.vmware.com/rcroft/theworks bash
docker run --rm -it --name theworks -v $(pwd):/tmp -w /tmp harbor.sydeng.vmware.com/rcroft/theworks ansible --version 
docker run --rm -it --name theworks -v $(pwd):/tmp -w /tmp harbor.sydeng.vmware.com/rcroft/theworks packer version
docker run --rm -it --name theworks -v $(pwd):/tmp -w /tmp harbor.sydeng.vmware.com/rcroft/theworks powercli version
docker run --rm -it --name theworks -v $(pwd):/tmp -w /tmp harbor.sydeng.vmware.com/rcroft/theworks powershell version
docker run --rm -it --name theworks -v $(pwd):/tmp -w /tmp harbor.sydeng.vmware.com/rcroft/theworks theworks version

Where /path/to/files is the local path for your scripts.