Remove the troubleshooting section from the Docker README

This commit is contained in:
Felipe Knorr Kuhn 2022-01-10 22:11:02 -08:00
parent 3a0fb2015a
commit 467cac7d4d
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A

View File

@ -56,23 +56,3 @@ In order to run with `romanz/electrs` as the backend , in addition to the settin
``` ```
You can update any of the settings in the `mempool-config.json` file using the environment variables to override. Refer to the `start.sh` script for a list of variables and their default values. You can update any of the settings in the `mempool-config.json` file using the environment variables to override. Refer to the `start.sh` script for a list of variables and their default values.
## Troubleshooting
If you already have something running on port 80, change it to something else under the `web` service section.
If you get stuck on "loading blocks", this means the websocket can't connect.
If you can't connect to the `bitcoind` RPC server, check your firewall settings and your `bitcoin.conf` file, it should contain at least these settings:
```
rpcallowip=0.0.0.0/0
rpcuser=mempool
rpcpassword=mempool
bind=0.0.0.0:8333
rpcbind=0.0.0.0:8332
```
If you can't connect to electrum/electrs, check your firewall settings and the IP you entered.
If you see a permission denied error coming from the database container, check your filesystem. The cache files generated by the backend will be stored in the `./data` directory and the database will be stored in the `./mysql/data` directory relative to the location of the `docker-compose.yml` file. If you move it somewhere, the paths will have to be updated and/or recreated.