This is a simple bash script that can pull down an image, start the container then pass commands either to the app or a makefile
To install the Runner you need to download the runner file and add it to your PATH or save it in your projects location
#From the location you downloaded it
export PATH=$(pwd):$PATH
runner.sh start --language go --version 1.17.0
runner.sh run
runner.sh stop
runner.sh start -l ansible -v 8.6.1 -m ~/.ssh:/root/.ssh;
- To build the images run
make build
.