cosmos-sdk/contrib/rosetta/docker-compose.yaml
SaReN 57f5e96570
Rosetta API implementation (#7695)
Ref: #7492

Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
Co-authored-by: Alessio Treglia <alessio@tendermint.com>
Co-authored-by: Frojdi Dymylja <33157909+fdymylja@users.noreply.github.com>
Co-authored-by: Robert Zaremba <robert@zaremba.ch>
Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
2021-01-21 09:33:02 +00: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.6
volumes:
- ./configuration:/rosetta/config:z
command: ["./config/run_tests.sh"]
working_dir: /rosetta