Skip to content

Commit

Permalink
feat(images): add support for litd v0.13.993-experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Aug 16, 2024
1 parent 59da59f commit d261956
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 2 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ Replace `<version>` with the desired Tap version (ex: `0.2.0-alpha`).

### Tags

- `0.13.993-exp` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.13.992-exp` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.13.991-exp` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.13.99-exp` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))

Expand Down
8 changes: 5 additions & 3 deletions docker/nodes.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 63,
"version": 64,
"images": {
"LND": {
"latest": "0.18.2-beta",
Expand Down Expand Up @@ -47,9 +47,11 @@
}
},
"litd": {
"latest": "0.13.991-exp",
"versions": ["0.13.991-exp", "0.13.99-exp"],
"latest": "0.13.993-exp",
"versions": ["0.13.993-exp", "0.13.992-exp", "0.13.991-exp", "0.13.99-exp"],
"compatibility": {
"0.13.993-exp": "27.0",
"0.13.992-exp": "27.0",
"0.13.991-exp": "27.0",
"0.13.99-exp": "27.0"
}
Expand Down
8 changes: 5 additions & 3 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export const REPO_STATE_URL =
* are pushed to Docker Hub, this list should be updated along with the /docker/nodes.json file.
*/
export const defaultRepoState: DockerRepoState = {
version: 63,
version: 64,
images: {
LND: {
latest: '0.18.2-beta',
Expand Down Expand Up @@ -383,9 +383,11 @@ export const defaultRepoState: DockerRepoState = {
},
},
litd: {
latest: '0.13.991-exp',
versions: ['0.13.991-exp', '0.13.99-exp'],
latest: '0.13.993-exp',
versions: ['0.13.993-exp', '0.13.992-exp', '0.13.991-exp', '0.13.99-exp'],
compatibility: {
'0.13.993-exp': '27.0',
'0.13.992-exp': '27.0',
'0.13.991-exp': '27.0',
'0.13.99-exp': '27.0',
},
Expand Down

0 comments on commit d261956

Please sign in to comment.