fix: docker-compose for rosetta-cli tests (#132) (#13946)

This commit is contained in:
sleepy ramen 2022-11-21 14:12:43 +01:00 committed by GitHub
parent 42597ee593
commit 82b64e6d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]