Post
Share your knowledge.
Using heimdallcli in a dockerized local network setup?
I'm trying to use heimdallcli
within my local dockerized network that I set up using matic-cli
. My main goal is to send a proposal using this command: heimdallcli tx gov submit-proposal param-change {pathToProposalJSONFile} --validator-id {validatorID} --chain-id {chainID}
. However, I'm encountering an error that states: 'Config File "heimdall-config" Not Found in "/var/lib/heimdall/config"'. The config directory doesn't seem to exist in the Docker environment, though I can see logs that suggest Heimdall is functioning. How can I resolve this and get the heimdallcli
command working?
- Polygon PoS
Answers
4It's also possible to configure Heimdall by directly accessing the container's console, using commands to set up the configuration as needed. You can check the necessary configurations with commands like vi /var/lib/heimdall/config/config.toml
and ensure the parameters are correctly set for your network setup .
First, ensure that the Heimdall configuration file is appropriately set up within your Docker environment. If the directory /var/lib/heimdall/config
does not exist within your Docker container, you might need to manually create it and ensure it has the necessary files like config.toml
. Typically, Docker setups might not have these pre-set paths accessible directly.
You can try mounting the configuration directory from your host machine to the Docker container. This can be done with the Docker run command, adding a volume mapping argument such as -v /path/to/your/config:/var/lib/heimdall/config
. This way, the heimdallcli
in the Docker container can access the config files it requires.
According to the documentation, make sure the Heimdall service on your Docker container is configured with the appropriate endpoints and parameters it needs to operate, such as eth_rpc_url
for Ethereum node connections .
Do you know the answer?
Please log in and share it.
Polygon is a decentralised Ethereum scaling platform that enables developers to build scalable user-friendly dApps with low transaction fees without ever sacrificing on security.