Skip to content

Commit

Permalink
feat: provide different versions
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Mar 12, 2024
1 parent 737c921 commit ee3d5df
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
19 changes: 16 additions & 3 deletions docker-bake.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
}
Expand Down

0 comments on commit ee3d5df

Please sign in to comment.