In a docker-compose.yml:
version: '3'
services:
hem:
image: quay.io/continuouspipe/hem1:latest
environment:
AWS_ACCESS_KEY_ID: "An AWS User ID that should remain secret!"
AWS_SECRET_ACCESS_KEY: "An AWS Secret Key that should remain secret!"
In a Dockerfile:
FROM quay.io/continuouspipe/hem:latest
ARG AWS_ACCESS_KEY_ID=
ARG AWS_SECRET_ACCESS_KEY=
RUN container build
docker-compose build hem
docker-compose push hem
This is a Docker image to provide the Inviqa tool, "hem", which was originally used to manage Vagrant VMs and run installation steps on a started VM.
Now, hem can be used fetch database dumps and assets from AWS and run the custom tasks that have built up over the years.
As for all images based on the ubuntu base image, see the base image README