drandreaskrueger
drandreaskrueger
Feature request: Could you please include a file `docker-compose-local.yaml` Editing away the # is easy for a human in an editor, but non-trivial in an automated way - that step...
@Puneetha17 ?
New version v55 released, please see https://github.com/jpmorganchase/quorum/issues/479#issuecomment-455602573 and the two comments below. Thanks :-)
blocks 131 - ... = TPS maxing out because of too low gasLimit blocks 191 - ... = only 1 validator keeps sealing txs because of too small txpool ```...
perfect, and thanks a lot for getting back to me so quickly! what about adding a `rebuild-docker.sh` or `run-local-docker-compose.sh` into that repo? My changes are here: https://github.com/drandreaskrueger/crux/commit/74e468791eb2df570d8cbd370e198b2ed338bdff
Actually, it does not look as if it has rebuild anything: ``` git clone [email protected]:drandreaskrueger/crux.git drandreaskrueger_crux cd drandreaskrueger_crux/docker/quorum-crux docker-compose -f docker-compose.yaml up --build Starting quorum4 ... done Starting quorum2 ......
ah sorry, had not see that comment/uncomment comment. Sorry. Now done like this: ``` version: "3.4" services: node1: &quorum_crux_node # Pull image down from Docker Hub # image: blkio10/quorum-crux:v1.0.0 #...
results in: ``` docker-compose -f docker-compose.yaml up --build Pulling node1 (blk.io/quorum/quorum-crux:)... ERROR: error parsing HTTP 404 response body: invalid character '
thanks a lot, that seem to have worked: ``` docker-compose -f docker-compose.yaml up --build Building node1 Step 1/24 : FROM alpine:3.8 ... # github.com/ethereum/go-ethereum/vendor/github.com/karalabe/hid In file included from vendor/github.com/karalabe/hid/hid_enabled.go:22:0: /usr/include/sys/poll.h:1:2:...
thanks. > Thanks for suggesting a rebuild-docker.sh. We could work on it, if it makes it simpler. New suggestion: With https://github.com/drandreaskrueger/crux/blob/master/docker/quorum-crux/docker-compose-local.yaml --> ``` docker-compose -f docker-compose-local.yaml up --build ``` however,...