This repository contains dockerfiles and builds public docker images from them.
Check available docker images here.
If you want to add your own docker image, then create directories in images in the following format: images/image-name/version-tag.
And put Dockerfile there.
For example:
images
├── commitizen
│ └── v2
│ ├── Dockerfile
│ └── README.md
├── github-cli
│ └── v1
│ ├── Dockerfile
│ └── README.md
└── kafka-connect
└── v1.6.1
├── docker-entrypoint.sh
├── Dockerfile
└── README.mdAfter pushing a new tag, GitHub Actions will build and push these docker images:
ghcr.io/daymarket/commitizen:v2
ghcr.io/daymarket/kafka-connect:v1.6.1
ghcr.io/daymarket/github-cli:v1We follow conventional commit rules and use commitizen to release new version.
If commit message does not meet convention, build will fail!