Skip to content

KazanExpress/ke-infra-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c821ca6 · Aug 25, 2023
Sep 30, 2022
Apr 11, 2023
Aug 25, 2023
Aug 25, 2023
Aug 12, 2021
Aug 10, 2021
Aug 25, 2023
Jul 18, 2022
Aug 10, 2021
Jan 20, 2023

Repository files navigation

KazanExpress Docker Images

This repository contains dockerfiles and builds public docker images from them.

Check available docker images here.

Instructions

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.md

After pushing a new tag, GitHub Actions will build and push these docker images:

ghcr.io/kazanexpress/commitizen:v2
ghcr.io/kazanexpress/kafka-connect:v1.6.1
ghcr.io/kazanexpress/github-cli:v1

Conventions

We follow conventional commit rules and use commitizen to release new version.

If commit message does not meet convention, build will fail!