Skip to content

Commit

Permalink
fix: docker-compose for rosetta-cli tests (#132) (cosmos#13946)
Browse files Browse the repository at this point in the history
  • Loading branch information
rllola authored Nov 21, 2022
1 parent 42597ee commit 82b64e6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion contrib/rosetta/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -12,6 +12,8 @@ services:

rosetta:
image: rosetta-ci:latest
depends_on:
- "cosmos"
command: [
"simd",
"rosetta",
Expand All @@ -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"]
Expand Down

0 comments on commit 82b64e6

Please sign in to comment.