Gomplate tool Docker container.
Docker container which runs the Gomplate template tool.
Pass arguments as you normally would to the Gomplate tool.
Mount volumes so the tool can have access to your files
docker run \
-v "$(pwd)/templates:/templates" \
-v "$(pwd)/results:/results" \
--rm \
noah-huppert/gomplate \
--input-dir /templates \
--output-dir /results
To build the Docker image run:
make
This build tag the image dev.
To build the image with a specific tag run:
make TAG="<tag>"
To push the Docker image to the registry by running:
make push