trueblocks-docker
trueblocks-docker copied to clipboard
I want to be able to start the docker against `mainnet`, `gnosis`, and `sepolia`. How does one do that? a) parameterize the startup routine with `--chain` b) allow for `--chain...
We already have config tool in our DAppNode repo, we can move it here to be integral part of our Docker image. However, there are some features missing in the...
**Summary:** Access to `mainnet` node works on both `localhost` (Mac) and from inside docker. Access to `sepolia`, only works from localhost. On my Macintosh, I can do: ``` curl -H...
From a user in discord (dreadedhamish): ``` services: core: image: trueblocks/core:v2.5.8-release environment: - TB_SETTINGS_DEFAULTCHAIN=pulsechain - TB_SETTINGS_CACHEPATH=/cache - TB_SETTINGS_INDEXPATH=/unchained entrypoint: ["/bin/bash", "/root/.local/share/trueblocks/startup.sh"] stop_grace_period: 120s # cpus: 4 # mem_limit: 4gb restart:...