cosmos-sdk/contrib/rosetta/docker-compose.yaml
Andrea Giacobino 25ecec6c15
rosetta: upgrade to newest version (#9314)
* feat:  update rosetta sdk to v0.6.10 

embed from v1.0.0 release branch of the library: https://github.com/tendermint/cosmos-rosetta-gateway/tree/release/v1.0.0

closes:
https://github.com/cosmos/cosmos-sdk/issues/9300

Co-authored-by: Alessio Treglia <alessio@tendermint.com>
2021-05-15 00:18:59 +02:00

40 lines
853 B
YAML

version: "3"
services:
cosmos:
image: rosetta-ci:latest
command: ["simd", "start", "--pruning", "nothing", "--grpc-web.enable", "true", "--grpc-web.address", "0.0.0.0:9091"]
ports:
- 9090:9090
- 26657:26657
logging:
driver: "none"
rosetta:
image: rosetta-ci:latest
command: [
"simd",
"rosetta",
"--blockchain", "app",
"--network", "network",
"--tendermint", "cosmos:26657",
"--grpc", "cosmos:9090",
"--addr", ":8080",
]
ports:
- 8080:8080
faucet:
image: rosetta-ci:latest
working_dir: /rosetta
command: ["python3", "faucet.py"]
expose:
- 8080
test_rosetta:
image: tendermintdev/rosetta-cli:v0.6.7
volumes:
- ./configuration:/rosetta/config:z
command: ["./config/run_tests.sh"]
working_dir: /rosetta