Problem: Unpublished ports with docker-compose

Solution: Publish the ports.

Closes #2041.
This commit is contained in:
Sylvain Bellemare 2018-02-12 19:31:45 +01:00
parent b8a33e0f30
commit c35e37be64

View File

@ -34,12 +34,16 @@ services:
TENDERMINT_PORT: 46657
ports:
- "9984"
- "46658"
command: bigchaindb -l DEBUG start
tendermint:
image: tendermint/tendermint:0.13
volumes:
- ./tmdata/config.toml:/tendermint/config.toml
entrypoint: ''
ports:
- "46656"
- "46657"
command: bash -c "tendermint init && tendermint node"
curl-client:
image: appropriate/curl