-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM lightninglabs/lnd:v0.18.0-beta | ||
FROM lightninglabs/lnd:v0.18.3-beta | ||
|
||
ARG ARCH | ||
RUN apk add --no-cache \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,29 +7,25 @@ Before building the LND package, your build environment must be setup for buildi | |
|
||
## Dependencies | ||
|
||
- [deno](https://deno.land/) | ||
- [docker](https://docs.docker.com/get-docker) | ||
- [docker-buildx](https://docs.docker.com/buildx/working-with-buildx/) | ||
- [yq (version 4)](https://mikefarah.gitbook.io/yq) | ||
- [start-sdk](https://github.com/Start9Labs/start-os/tree/sdk/backend) | ||
- [make](https://www.gnu.org/software/make/) | ||
- [deno](https://deno.land/) | ||
- [start-sdk](https://github.com/Start9Labs/start-os/blob/v0.3.5.1/core/install-sdk.sh) | ||
- [yq (version 4)](https://mikefarah.gitbook.io/yq) | ||
|
||
## Cloning | ||
|
||
Clone the project locally. | ||
|
||
``` | ||
git clone [email protected]:Start9Labs/lnd-wrapper.git | ||
cd lnd-wrapper | ||
git clone [email protected]:Start9Labs/lnd-startos.git | ||
cd lnd-startos | ||
``` | ||
|
||
## Building | ||
|
||
To build the project, run the following commands: | ||
|
||
``` | ||
make | ||
``` | ||
To build the project run the command: `make` | ||
|
||
Alternatively the package can be built for individual architectures by specifying the architecture as follows: | ||
|
||
|
@@ -51,6 +47,12 @@ start-cli auth login | |
start-cli --host https://server-name.local package install lnd.s9pk | ||
``` | ||
|
||
If you already have your `start-cli` config file setup with a default `host`, you can install simply by running: | ||
|
||
``` | ||
make install | ||
``` | ||
|
||
**Tip:** You can also install the lnd.s9pk using **Sideload Service** under the **StartOS > SETTINGS** section. | ||
|
||
## Verify Install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -251,5 +251,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations | |
) | ||
} | ||
}, | ||
"0.18.0.1", | ||
"0.18.3", | ||
); |