github.com/Finschia/finschia-sdk@v0.48.1/contrib/rosetta/docker-compose.yaml (about) 1 version: "3" 2 3 services: 4 cosmos: 5 image: rosetta-ci:latest 6 command: ["simd", "start", "--pruning", "nothing", "--grpc-web.enable", "true", "--grpc-web.address", "0.0.0.0:9091"] 7 ports: 8 - 9090:9090 9 - 26657:26657 10 logging: 11 driver: "none" 12 13 rosetta: 14 image: rosetta-ci:latest 15 command: [ 16 "simd", 17 "rosetta", 18 "--blockchain", "app", 19 "--network", "network", 20 "--tendermint", "cosmos:26657", 21 "--grpc", "cosmos:9090", 22 "--addr", ":8080", 23 ] 24 ports: 25 - 8080:8080 26 27 faucet: 28 image: rosetta-ci:latest 29 working_dir: /rosetta 30 command: ["python3", "faucet.py"] 31 expose: 32 - 8080 33 34 test_rosetta: 35 image: tendermintdev/rosetta-cli:v0.6.7 36 volumes: 37 - ./configuration:/rosetta/config:z 38 command: ["./config/run_tests.sh"] 39 working_dir: /rosetta