Skip to content

Commit

Permalink
feat(images): add support for tapd v0.4.0-alpha.rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Jul 15, 2024
1 parent b0860ab commit 1715c85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ Replace `<version>` with the desired Eclair version (ex: `0.3.3`).

### Tags

- `0.4.0-alpha.rc4` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.3.3-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.3.2-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
- `0.3.1-alpha` ([tap/Dockerfile](https://github.com/jamaljsr/polar/blob/master/docker/tapd/Dockerfile))
Expand Down
8 changes: 6 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ export const dockerConfigs: Record<NodeImplementation, DockerConfig> = {
'--lnd.tlspath=/home/tap/.lnd/tls.cert',
'--allow-public-uni-proof-courier',
'--allow-public-stats',
'--universe.public-access',
'--universe.public-access=rw',
'--universe.sync-all-assets',
].join('\n '),
// if vars are modified, also update composeFile.ts & the i18n strings for cmps.nodes.CommandVariables
variables: ['name', 'containerName', 'lndName'],
Expand Down Expand Up @@ -391,8 +392,11 @@ export const defaultRepoState: DockerRepoState = {
},
tapd: {
latest: '0.3.3-alpha',
versions: ['0.3.3-alpha', '0.3.2-alpha'],
versions: ['0.4.0-alpha.rc4', '0.3.3-alpha', '0.3.2-alpha'],
// Not all tapd versions are compatible with all LND versions.
// This mapping specifies the minimum compatible LND for each tapd version
compatibility: {
'0.4.0-alpha.rc4': '0.18.0-beta',
'0.3.3-alpha': '0.16.0-beta',
'0.3.2-alpha': '0.16.0-beta',
},
Expand Down

0 comments on commit 1715c85

Please sign in to comment.