mirror of
https://github.com/lnbook/lnbook
synced 2024-11-15 00:15:05 +00:00
f94fe3fd93
The docker containers have been improved and updated. The payment demo script can be rerun and is resilient to errors and delays. The docker mini-tutotial and installation instructions have been moved to a new appendix
8 lines
251 B
Bash
8 lines
251 B
Bash
#!/bin/bash
|
|
# a small script to help sanity check the versions of the different node implementations
|
|
dockerfiles=$(find . -name 'Dockerfile')
|
|
# print location of dockerfiles
|
|
echo $dockerfiles
|
|
# print variables
|
|
awk '/ARG/ && /VER|COMMIT/' $dockerfiles
|