Skip to content

Commit

Permalink
feat(images): add support for c-lightning v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed May 30, 2021
1 parent 0deb270 commit cabf9bf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ With Polar you can:
Supported Network Node Versions:

- [LND](https://github.com/lightningnetwork/lnd) - v0.12.0, v0.11.1, v0.11.0, v0.10.3, v0.10.2, v0.10.1, v0.10.0, v0.9.1, v0.9.0, v0.8.2, v0.8.0 & v0.7.1
- [c-lightning](https://github.com/ElementsProject/lightning) - v0.9.3, v0.9.2, v0.9.1, v0.9.0, v0.8.2, v0.8.1 & v0.8.0
- [c-lightning](https://github.com/ElementsProject/lightning) - v0.10.0, v0.9.3, v0.9.2, v0.9.1, v0.9.0, v0.8.2, v0.8.1 & v0.8.0
- [Eclair](https://github.com/ACINQ/eclair/) - v0.5.0, v0.4.2, v0.3.3
- [Bitcoin Core](https://github.com/bitcoin/bitcoin) - v0.21.1, v0.21.0, v0.20.1, v0.20.0, v0.19.1, v0.19.0.1 & v0.18.1

Expand Down
1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ $ docker push polarlightning/lnd:<version>

### Tags

- `0.10.0` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
- `0.9.3` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
- `0.9.2` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
- `0.9.1` ([clightning/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/clightning/Dockerfile))
Expand Down
15 changes: 12 additions & 3 deletions docker/nodes.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 23,
"version": 24,
"images": {
"LND": {
"latest": "0.12.0-beta",
Expand Down Expand Up @@ -33,8 +33,17 @@
}
},
"c-lightning": {
"latest": "0.9.3",
"versions": ["0.9.3", "0.9.2", "0.9.1", "0.9.0", "0.8.2", "0.8.1", "0.8.0"]
"latest": "0.10.0",
"versions": [
"0.10.0",
"0.9.3",
"0.9.2",
"0.9.1",
"0.9.0",
"0.8.2",
"0.8.1",
"0.8.0"
]
},
"eclair": {
"latest": "0.5.0",
Expand Down
6 changes: 3 additions & 3 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,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: 23,
version: 24,
images: {
LND: {
latest: '0.12.0-beta',
Expand Down Expand Up @@ -252,8 +252,8 @@ export const defaultRepoState: DockerRepoState = {
},
},
'c-lightning': {
latest: '0.9.3',
versions: ['0.9.3', '0.9.2', '0.9.1', '0.9.0', '0.8.2', '0.8.1', '0.8.0'],
latest: '0.10.0',
versions: ['0.10.0', '0.9.3', '0.9.2', '0.9.1', '0.9.0', '0.8.2', '0.8.1', '0.8.0'],
},
eclair: {
latest: '0.5.0',
Expand Down

0 comments on commit cabf9bf

Please sign in to comment.