Skip to content

Commit

Permalink
Merge pull request #228 from bigchaindb/update-tendermint
Browse files Browse the repository at this point in the history
Update tendermint and mongo version
  • Loading branch information
Manolo committed Jul 17, 2018
2 parents ea4f9e4 + ba4b488 commit 944f047
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
mongodb:
image: mongo:3.4.13
image: mongo:3.6
ports:
- "27017"
command: mongod
Expand All @@ -17,23 +17,23 @@ services:
BIGCHAINDB_SERVER_BIND: 0.0.0.0:9984
BIGCHAINDB_WSSERVER_HOST: 0.0.0.0
BIGCHAINDB_TENDERMINT_HOST: tendermint
BIGCHAINDB_TENDERMINT_PORT: 46657
BIGCHAINDB_TENDERMINT_PORT: 26657
ports:
- "9984:9984"
- "9985:9985"
- "46658"
- "26658"
healthcheck:
test: ["CMD", "bash", "-c", "curl http://bigchaindb:9984 && curl http://tendermint:46657/abci_query"]
test: ["CMD", "bash", "-c", "curl http://bigchaindb:9984 && curl http://tendermint:26657/abci_query"]
interval: 3s
timeout: 5s
retries: 3
command: -l DEBUG start
tendermint:
image: tendermint/tendermint:0.19.2
volumes:
- ./compose/tendermint/tmdata/config.toml:/tendermint/config.toml
image: tendermint/tendermint:0.22.3
# volumes:
# - ./tmdata:/tendermint
entrypoint: ''
ports:
- "46656"
- "46657"
command: sh -c "tendermint init && tendermint node --consensus.create_empty_blocks=false --proxy_app=tcp://bigchaindb:46658"
- "26656"
- "26657"
command: sh -c "tendermint init && tendermint node --consensus.create_empty_blocks=false --proxy_app=tcp://bigchaindb:26658"

0 comments on commit 944f047

Please sign in to comment.