mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-04 20:19:24 +02:00
Fix docker compose run issue
docker-compose run -d --name alice --volume simnet_lnd_alice:/root/.lnd lnd => ERROR [builder 4/4] RUN git clone https://github.com/btcsuite/btcd.git . && git checkout v0.23 6.2s ------ > [builder 4/4] RUN git clone https://github.com/btcsuite/btcd.git . && git checkout v0.23.5 && go install -v . ./cmd/...: #0 0.253 Cloning into '.'... #0 6.059 error: pathspec 'v0.23.5' did not match any file(s) known to git ------ failed to solve: executor failed running [/bin/sh -c git clone https://github.com/btcsuite/btcd.git . && git checkout $BTCD_VERSION && go install -v . ./cmd/...]: exit code: 1
This commit is contained in:
parent
86e7b4e1e0
commit
d9f3a12f57
@ -8,7 +8,7 @@ RUN apk add --no-cache git gcc musl-dev
|
||||
WORKDIR $GOPATH/src/github.com/btcsuite/btcd
|
||||
|
||||
# Pin down btcd to a version that we know works with lnd.
|
||||
ARG BTCD_VERSION=v0.23.5
|
||||
ARG BTCD_VERSION=v0.23.4
|
||||
|
||||
# Grab and install the latest version of of btcd and all related dependencies.
|
||||
RUN git clone https://github.com/btcsuite/btcd.git . \
|
||||
|
Loading…
x
Reference in New Issue
Block a user