This repo contains dockerfiles and CI/CD for our public docker images.
This contains a docker image with the connectors that we use.
This contains a docker image with the Postgres driver.
This contains a docker image only with the connectors that we use on-prem.
- Make your changes to the image
- Update the
version
-file for the image to give the image a new tag
- Create a subfolder (name may only contain alphanumeric characters and underscores)
with the files
Dockerfile
andversion
.Dockerfile
will be your recipe for building the image, andversion
will hold the image tag. - Go to the AWS console and create a public ECR with the same name as the subfolder
- Add this to
azure-pipelines.yaml
:
- template: build-and-push-template.yaml
parameters:
subfolder: <your subfolder name here>
- Your image will be built and pushed to ecr
- Update this readme with info about your new image
Cleanup of untagged images in ECR is manual at the moment.