From 1764b9163cb75a5b2943f24e1918e5fec89f31bf Mon Sep 17 00:00:00 2001 From: keblek <68111648+keblek@users.noreply.github.com> Date: Sun, 31 Jan 2021 23:11:21 +0100 Subject: [PATCH] Fix formatting --- node_client.asciidoc | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/node_client.asciidoc b/node_client.asciidoc index 8ab9336..c90e95f 100644 --- a/node_client.asciidoc +++ b/node_client.asciidoc @@ -59,12 +59,18 @@ Docker containers are often optimized to be small, i.e. occupy the minimum disk You can find the latest container definitions and build configurations in the book's repository under the +code/docker+ folder. Each container is in a separate folder as can be seen below: -//// $ tree -F --charset=asciii code +[tree] +---- +$ tree -F --charset=asciii code +---- + [docker-dir-list] ---- code `-- docker/ + |-- Makefile |-- bitcoind/ + | |-- Dockerfile | |-- bashrc | |-- bitcoind/ | | |-- bitcoin.conf @@ -73,37 +79,35 @@ code | | |-- demo_mnemonic.txt | | `-- demo_privkey.txt | |-- bitcoind-entrypoint.sh - | |-- Dockerfile | `-- mine.sh* |-- c-lightning/ + | |-- Dockerfile | |-- bashrc | |-- c-lightning-entrypoint.sh - | |-- Dockerfile | |-- fund-c-lightning.sh | |-- lightningd/ | | `-- config | |-- logtail.sh | `-- wait-for-bitcoind.sh + |-- docker-compose.yml |-- eclair/ - | |-- bashrc | |-- Dockerfile + | |-- bashrc | |-- eclair/ | | `-- eclair.conf | |-- eclair-entrypoint.sh | |-- logtail.sh | `-- wait-for-bitcoind.sh - |-- lnbook-app/ - | |-- docker-compose.yml - | `-- setup-channels.sh - `-- lnd/ - |-- bashrc - |-- Dockerfile - |-- fund-lnd.sh - |-- lnd/ - | `-- lnd.conf - |-- lnd-entrypoint.sh - |-- logtail.sh - `-- wait-for-bitcoind.sh + |-- lnd/ + | |-- Dockerfile + | |-- bashrc + | |-- fund-lnd.sh + | |-- lnd/ + | | `-- lnd.conf + | |-- lnd-entrypoint.sh + | |-- logtail.sh + | `-- wait-for-bitcoind.sh + `-- setup-channels.sh ---- ==== Installing Docker