Fix formatting

pull/614/head
keblek 4 years ago committed by GitHub
parent 88f822a3c7
commit 1764b9163c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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: 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] [docker-dir-list]
---- ----
code code
`-- docker/ `-- docker/
|-- Makefile
|-- bitcoind/ |-- bitcoind/
| |-- Dockerfile
| |-- bashrc | |-- bashrc
| |-- bitcoind/ | |-- bitcoind/
| | |-- bitcoin.conf | | |-- bitcoin.conf
@ -73,37 +79,35 @@ code
| | |-- demo_mnemonic.txt | | |-- demo_mnemonic.txt
| | `-- demo_privkey.txt | | `-- demo_privkey.txt
| |-- bitcoind-entrypoint.sh | |-- bitcoind-entrypoint.sh
| |-- Dockerfile
| `-- mine.sh* | `-- mine.sh*
|-- c-lightning/ |-- c-lightning/
| |-- Dockerfile
| |-- bashrc | |-- bashrc
| |-- c-lightning-entrypoint.sh | |-- c-lightning-entrypoint.sh
| |-- Dockerfile
| |-- fund-c-lightning.sh | |-- fund-c-lightning.sh
| |-- lightningd/ | |-- lightningd/
| | `-- config | | `-- config
| |-- logtail.sh | |-- logtail.sh
| `-- wait-for-bitcoind.sh | `-- wait-for-bitcoind.sh
|-- docker-compose.yml
|-- eclair/ |-- eclair/
| |-- bashrc
| |-- Dockerfile | |-- Dockerfile
| |-- bashrc
| |-- eclair/ | |-- eclair/
| | `-- eclair.conf | | `-- eclair.conf
| |-- eclair-entrypoint.sh | |-- eclair-entrypoint.sh
| |-- logtail.sh | |-- logtail.sh
| `-- wait-for-bitcoind.sh | `-- wait-for-bitcoind.sh
|-- lnbook-app/ |-- lnd/
| |-- docker-compose.yml | |-- Dockerfile
| `-- setup-channels.sh | |-- bashrc
`-- lnd/ | |-- fund-lnd.sh
|-- bashrc | |-- lnd/
|-- Dockerfile | | `-- lnd.conf
|-- fund-lnd.sh | |-- lnd-entrypoint.sh
|-- lnd/ | |-- logtail.sh
| `-- lnd.conf | `-- wait-for-bitcoind.sh
|-- lnd-entrypoint.sh `-- setup-channels.sh
|-- logtail.sh
`-- wait-for-bitcoind.sh
---- ----
==== Installing Docker ==== Installing Docker

Loading…
Cancel
Save