These images include common tools used on AppyWay for Octopus steps and follow the patterns recommended by Octopus for creating custom workers.
The original images and documentation are in the Octopus WorkerTools repository.
The worker images are available on docker hub
Operating System | Installed Tools and Versions |
---|---|
Ubuntu 20.04 | Dockerfile |
Windows Server Core 2019 | Dockerfile |
See the docs to get started using the custom appyway/worker-tools
image as an execution container for workers.
The images we publish are semantically versioned. To ensure stability within your deployment processes, we recommend using the full major.minor.patch
tag when using the appyway/worker-tools
image - for example, use 2.0.2-ubuntu.20.04
, not ubuntu.20.04
.
To run these tests, you can see the instructions for Ubuntu and Windows
N.B. all commands below should be run from the project root directory.
Our tests are implemented in Pester
, which relies on PowerShell
.
./build.sh --image-directory='ubuntu.20.04'
Runs a build and test of the ubuntu.20.04
container
cd ubuntu.20.04
docker build . -t worker-tools
docker build . -t worker-tools-tests -f Tests.Dockerfile --build-arg ContainerUnderTest=worker-tools
docker run -it -v `pwd`:/app worker-tools-tests pwsh
Then within the running docker container
/app/scripts/run-tests.ps1
build.ps1 -image-directory 'windows.ltsc2019'
Runs a build and test of the windows.ltsc2019
container
cd windows.ltsc2019
docker build . -t worker-tools
docker build . -t worker-tools-tests -f Tests.Dockerfile --build-arg ContainerUnderTest=worker-tools
docker run -it -v ${pwd}:c:\app worker-tools-tests pwsh
Then within the running docker container
/app/scripts/run-tests.ps1