github.com/m3db/m3@v1.5.0/scripts/docker-integration-tests/repair/docker-compose.yml (about) 1 version: "3.5" 2 services: 3 dbnode01: 4 expose: 5 - "9000-9004" 6 - "2379-2380" 7 ports: 8 - "0.0.0.0:9012:9002" 9 - "0.0.0.0:9013:9003" 10 networks: 11 - backend 12 image: "m3dbnode_integration:${REVISION}" 13 environment: 14 - M3DB_HOST_ID=m3db_local_1 15 volumes: 16 - "./m3dbnode.yml:/etc/m3dbnode/m3dbnode.yml" 17 dbnode02: 18 expose: 19 - "9000-9004" 20 - "2379-2380" 21 ports: 22 - "0.0.0.0:9022:9002" 23 - "0.0.0.0:9023:9003" 24 networks: 25 - backend 26 image: "m3dbnode_integration:${REVISION}" 27 environment: 28 - M3DB_HOST_ID=m3db_local_2 29 volumes: 30 - "./m3dbnode.yml:/etc/m3dbnode/m3dbnode.yml" 31 coordinator01: 32 expose: 33 - "7201" 34 - "7203" 35 - "7204" 36 ports: 37 - "0.0.0.0:7201:7201" 38 - "0.0.0.0:7203:7203" 39 - "0.0.0.0:7204:7204" 40 networks: 41 - backend 42 image: "m3coordinator_integration:${REVISION}" 43 volumes: 44 - "./:/etc/m3coordinator/" 45 networks: 46 backend: