diff --git a/contrib/rosetta/docker-compose.yaml b/contrib/rosetta/docker-compose.yaml index bfeca6a7ff..5f1b1e4489 100644 --- a/contrib/rosetta/docker-compose.yaml +++ b/contrib/rosetta/docker-compose.yaml @@ -3,7 +3,7 @@ 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"] + command: ["simd", "start", "--pruning", "nothing", "--grpc.enable", "true", "--grpc.address", "0.0.0.0:9090", "--grpc-web.enable", "true", "--grpc-web.address", "0.0.0.0:9091"] ports: - 9090:9090 - 26657:26657 @@ -12,6 +12,8 @@ services: rosetta: image: rosetta-ci:latest + depends_on: + - "cosmos" command: [ "simd", "rosetta", @@ -33,6 +35,10 @@ services: test_rosetta: image: rosetta-ci:latest + depends_on: + - "cosmos" + - "rosetta" + - "faucet" volumes: - ./configuration:/rosetta/config:z command: ["./config/run_tests.sh"]