1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2025-02-14 21:10:32 +01:00

update tendermint and mongo version

This commit is contained in:
manolodewiner 2018-07-17 11:15:53 +02:00
parent ea4f9e4464
commit ba4b488dca

View File

@ -2,7 +2,7 @@ version: '2.1'
services: services:
mongodb: mongodb:
image: mongo:3.4.13 image: mongo:3.6
ports: ports:
- "27017" - "27017"
command: mongod command: mongod
@ -17,23 +17,23 @@ services:
BIGCHAINDB_SERVER_BIND: 0.0.0.0:9984 BIGCHAINDB_SERVER_BIND: 0.0.0.0:9984
BIGCHAINDB_WSSERVER_HOST: 0.0.0.0 BIGCHAINDB_WSSERVER_HOST: 0.0.0.0
BIGCHAINDB_TENDERMINT_HOST: tendermint BIGCHAINDB_TENDERMINT_HOST: tendermint
BIGCHAINDB_TENDERMINT_PORT: 46657 BIGCHAINDB_TENDERMINT_PORT: 26657
ports: ports:
- "9984:9984" - "9984:9984"
- "9985:9985" - "9985:9985"
- "46658" - "26658"
healthcheck: 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 interval: 3s
timeout: 5s timeout: 5s
retries: 3 retries: 3
command: -l DEBUG start command: -l DEBUG start
tendermint: tendermint:
image: tendermint/tendermint:0.19.2 image: tendermint/tendermint:0.22.3
volumes: # volumes:
- ./compose/tendermint/tmdata/config.toml:/tendermint/config.toml # - ./tmdata:/tendermint
entrypoint: '' entrypoint: ''
ports: ports:
- "46656" - "26656"
- "46657" - "26657"
command: sh -c "tendermint init && tendermint node --consensus.create_empty_blocks=false --proxy_app=tcp://bigchaindb:46658" command: sh -c "tendermint init && tendermint node --consensus.create_empty_blocks=false --proxy_app=tcp://bigchaindb:26658"