Markdown formatting

This commit is contained in:
Dennis Reimann 2021-09-30 11:14:08 +02:00
parent 81a17317e1
commit 3c98599e60
No known key found for this signature in database
GPG Key ID: 5009E1797F03F8D0
4 changed files with 8 additions and 3 deletions

View File

@ -15,4 +15,5 @@ FIREFLY_HOST="firefly.yourserver.org"
. btcpay-setup.sh -i . btcpay-setup.sh -i
. ./Tools/fireflyiii/init.sh . ./Tools/fireflyiii/init.sh
``` ```
4. Access Firefly III at `firefly.yourserver.org` and create your admin account. 4. Access Firefly III at `firefly.yourserver.org` and create your admin account.

View File

@ -53,6 +53,7 @@ services:
By running `jm.sh` without parameter, you will get a bunch of command that you can run such as: By running `jm.sh` without parameter, you will get a bunch of command that you can run such as:
For example: For example:
``` ```
Usage: Usage:
------ ------
@ -84,6 +85,7 @@ Example:
``` ```
Note `jm.sh` commands are wrapper around joinmarket scripts. Those wrapper makes your life easier by: Note `jm.sh` commands are wrapper around joinmarket scripts. Those wrapper makes your life easier by:
1. Avoiding, when it can, that you enter wallet file name/ wallet password 1. Avoiding, when it can, that you enter wallet file name/ wallet password
2. Stop and Start the yield generator for the duration of the operation 2. Stop and Start the yield generator for the duration of the operation
@ -108,10 +110,9 @@ This is because the yield generator is running.
You can stop and start the yield generator with the helper scripts in the container `stop.sh` and `start.sh`. You can stop and start the yield generator with the helper scripts in the container `stop.sh` and `start.sh`.
## Troubleshooting ## Troubleshooting
Run `jm.sh logs` to get the logs of the yield generator. Run `jm.sh logs` to get the logs of the yield generator.
A common issue is that a lock file is present, preventing it to restart. A common issue is that a lock file is present, preventing it to restart.
In which case, connect directly into the container with `jm.sh bash` and delete the problematic file. In which case, connect directly into the container with `jm.sh bash` and delete the problematic file.

View File

@ -16,6 +16,7 @@ The `oracle` roles is to define the `event` and `attest` a single outcome of the
Let's call Alice and Bob the two parties of the contract, and Olivia the oracle. Let's call Alice and Bob the two parties of the contract, and Olivia the oracle.
A DLC will show two transactions on the chain: A DLC will show two transactions on the chain:
* The Funding Transaction * The Funding Transaction
* The Contract Execution Transaction (CET) * The Contract Execution Transaction (CET)
@ -42,4 +43,4 @@ You can then use `ndlc-cli.sh` to run use ndlc-cli, for example:
ndlc.sh oracle generate MyOwnOracle ndlc.sh oracle generate MyOwnOracle
``` ```
Read our documentation on our [github repository](https://github.com/dgarage/NDLC/blob/master/docs/Concepts.md). Read our documentation on our [GitHub repository](https://github.com/dgarage/NDLC/blob/master/docs/Concepts.md).

View File

@ -42,12 +42,14 @@ docker logs pihole | grep random
``` ```
If the password does not work, you can try to reset the password: If the password does not work, you can try to reset the password:
```bash ```bash
pihole.sh -a -p pihole.sh -a -p
docker restart pihole docker restart pihole
``` ```
Then running again Then running again
```bash ```bash
docker logs pihole | grep random docker logs pihole | grep random
``` ```