Skip to content

Commit 162ac7f

Browse files
committed
Update LND version
1 parent 3279827 commit 162ac7f

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 2020-04-30
4+
- Update `lnd` to v0.10.0-beta
5+
36
## 2020-04-25
47
- Update `elements` to v0.18.1.6
58
- Adjust default ports

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ volumes:
1111
services:
1212
alice:
1313
container_name: ${COMPOSE_PROJECT_NAME}_alice
14-
image: bitcoinstack/lnd:0.9.2-alpine
14+
image: bitcoinstack/lnd:0.10.0-alpine
1515
restart: unless-stopped
1616
command: [
1717
"--noseedbackup",
@@ -41,7 +41,7 @@ services:
4141

4242
bob:
4343
container_name: ${COMPOSE_PROJECT_NAME}_bob
44-
image: bitcoinstack/lnd:0.9.2-alpine
44+
image: bitcoinstack/lnd:0.10.0-alpine
4545
restart: unless-stopped
4646
command: [
4747
"--noseedbackup",

lnd/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-alpine as builder
1+
FROM golang:1.14-alpine as builder
22

33
WORKDIR /go/src/github.com/lightningnetwork/lnd
44

@@ -8,7 +8,7 @@ ENV GODEBUG netdns=cgo
88

99
RUN apk add --no-cache --update alpine-sdk git make \
1010
&& git clone -n https://github.com/lightningnetwork/lnd . \
11-
&& git checkout v0.9.2-beta \
11+
&& git checkout v0.10.0-beta \
1212
&& make \
1313
&& make install tags="autopilotrpc chainrpc invoicesrpc routerrpc signrpc walletrpc watchtowerrpc wtclientrpc"
1414

0 commit comments

Comments
 (0)