Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
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
Add docker compose for one step setup with testnet #1000
base: master
Are you sure you want to change the base?
Add docker compose for one step setup with testnet #1000
Changes from 6 commits
d50300a
8ce65df
62e6d2f
0de73a1
34fffe1
cec3576
b4cb156
3c40771
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to not use a constant
rpcauth
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm using this constant
rpcauth
just for easy use. Others may delete it and generate their ownrpcauth
via rpcauth.py, put it to./bitcoind/bitcoin.conf
and change the lineauth = "alice:alice"
inconf.toml
to their own config.Also, if you want to using cookie file to auth, there's a way to do it:
rpcauth
configdocker-compose.yml
in[electrs] > volumes
section:- ./cookie:/electrs/.cookie
conf.toml
file, i.e. comment out therpcauth
line, un-commentcookie_file
and set it's value to/electrs/.cookie
docker compose up -d
, this command will only start bitcoind, but not electrs./cookie
file:cat ./bitcoind/testnet3/.cookie > cookie
docker compose up -d --build --no-deps electrs
But i thought it's kind complicate, most people just want one-click to use it.