mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-20 13:34:32 +01:00
docs: remove unnecessary docker pull from release verification
Docker will automatically pull the image if it isn't found locally.
This commit is contained in:
parent
fc4a16b672
commit
50d27e8050
3 changed files with 0 additions and 3 deletions
1
.github/workflows/release.yaml
vendored
1
.github/workflows/release.yaml
vendored
|
@ -113,7 +113,6 @@ jobs:
|
|||
To verify the `lnd` and `lncli` binaries inside the docker images against the signed, reproducible release binaries, there is a verification script in the image that can be called (before starting the container for example):
|
||||
|
||||
```shell
|
||||
$ docker pull lightninglabs/lnd:${{ env.RELEASE_VERSION }}
|
||||
$ docker run --rm --entrypoint="" lightninglabs/lnd:${{ env.RELEASE_VERSION }} /verify-install.sh
|
||||
$ OK=$?
|
||||
$ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done
|
||||
|
|
|
@ -61,7 +61,6 @@ script in the image that can be called (before starting the container for
|
|||
example):
|
||||
|
||||
```shell
|
||||
⛰ docker pull lightninglabs/lnd:v0.12.0-beta
|
||||
⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.0-beta /verify-install.sh
|
||||
⛰ OK=$?
|
||||
⛰ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done
|
||||
|
|
|
@ -99,7 +99,6 @@ script in the image that can be called (before starting the container for
|
|||
example):
|
||||
|
||||
```shell
|
||||
⛰ docker pull lightninglabs/lnd:v0.12.0-beta
|
||||
⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.0-beta /verify-install.sh
|
||||
⛰ OK=$?
|
||||
⛰ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done
|
||||
|
|
Loading…
Add table
Reference in a new issue