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
7 lines
155 B
Bash
7 lines
155 B
Bash
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
# Show LND log from beginning and follow
|
|
touch /lightningd/lightningd.log
|
|
tail -n +1 -f /lightningd/lightningd.log || true
|