mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 14:21:14 +00:00
Make RPC bind to localhost by default (#3746)
* Make RPC bind to localhost by default * Add CHANGELOG_PENDING entry * Allow testnet command to override RPC listen address * Update localnet test to bind RPC to 0.0.0.0 * Update p2p test to bind RPC to 0.0.0.0 * Remove rpc-laddr parameter * Update localnet to use config template with RPC listen address override * Use config template override method for RPC listen address * Build config template into localnode image * Build localnode image locally before starting localnet * Move testnet config overrides into templates * Revert deletion of config overrides * Remove extraneous config parameter overrides
This commit is contained in:
committed by
Ethan Buchman
parent
c37faf3ac1
commit
d88a639838
@@ -27,7 +27,12 @@ RUN make install_abci
|
||||
# install Tendermint
|
||||
RUN make install
|
||||
|
||||
RUN tendermint testnet --node-dir-prefix="mach" --v=4 --populate-persistent-peers=false --o=$REPO/test/p2p/data
|
||||
RUN tendermint testnet \
|
||||
--config $REPO/test/docker/config-template.toml \
|
||||
--node-dir-prefix="mach" \
|
||||
--v=4 \
|
||||
--populate-persistent-peers=false \
|
||||
--o=$REPO/test/p2p/data
|
||||
|
||||
# Now copy in the code
|
||||
# NOTE: this will overwrite whatever is in vendor/
|
||||
|
||||
Reference in New Issue
Block a user