From 467cac7d4d1acdf4e05d0be03ae93f8aead6943c Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn Date: Mon, 10 Jan 2022 22:11:02 -0800 Subject: [PATCH] Remove the troubleshooting section from the Docker README --- docker/README.md | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/docker/README.md b/docker/README.md index 8e30dfa62..65c0790c7 100644 --- a/docker/README.md +++ b/docker/README.md @@ -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. - -## 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.