We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I would like to connect esplora to my bitcoin core node.
This is my actual docker compose but don't work:
services: bitcoin_signet: container_name: bitcoin_signet image: bitcoin/bitcoin:latest stop_grace_period: 1m command: - -printtoconsole=1 - -signet=1 - -server=1 - -txindex=1 - -rpcallowip=172.0.0.0/8 - -rpcbind=0.0.0.0 - -rpcauth=${RPCAUTH} ports: - 38332:38332 - 38333:38333 volumes: - ./bitcoin:/home/bitcoin/.bitcoin networks: - bitcoin_signet_network esplora_signet: container_name: esplora_signet image: blockstream/esplora:latest build: context: ./esplora dockerfile: Dockerfile stop_grace_period: 1m command: /srv/explorer/run.sh bitcoin-signet explorer ports: - 8084:80 - 50001:50001 volumes: - ./esplora_data:/data environment: ELECTRS_ARGS: --utxos-limit 1000000 --jsonrpc-import --cors '*' --daemon-rpc-addr bitcoin_signet:38332 networks: - bitcoin_signet_network networks: bitcoin_signet_network: name: bitcoin_signet_network
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I would like to connect esplora to my bitcoin core node.
This is my actual docker compose but don't work:
The text was updated successfully, but these errors were encountered: