diff --git a/README.md b/README.md index 61ec735..51037a4 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,8 @@ ## Introduction All-in-one container for having Ceph in testing environment based on [go-ceph](https://github.com/ceph/go-ceph/) with modifications. + +## Versions + +- v14.2.6 +- v16 diff --git a/docker-bake.json b/docker-bake.json index 719af62..10d466d 100644 --- a/docker-bake.json +++ b/docker-bake.json @@ -7,13 +7,26 @@ } }, "target": { - "ceph-testing": { + "ceph-testing-latest": { "args": { - "GOARCH": "amd64" + "GOARCH": "amd64", + "CEPH_TAG": "v16" }, "dockerfile": "Dockerfile", "tags": [ - "ghcr.io/snapp-incubator/ceph-testing-container" + "ghcr.io/snapp-incubator/ceph-testing-container:latest", + "ghcr.io/snapp-incubator/ceph-testing-container:v16" + ] + }, + "ceph-testing-legacy": { + "inherits": [ + "ceph-testing-latest" + ], + "args": { + "CEPH_TAG": "v14.2.6" + }, + "tags": [ + "ghcr.io/snapp-incubator/ceph-testing-container:v14.2.6" ] } }