github.com/m3db/m3@v1.5.0/scripts/docker-integration-tests/query_fanout/docker-compose.yml (about)

     1  version: "3.5"
     2  services:
     3    dbnode-cluster-a:
     4      expose:
     5        - "9000-9004"
     6        - "2379-2380"
     7      ports:
     8        - "0.0.0.0:9000-9004:9000-9004"
     9        - "0.0.0.0:2379-2380:2379-2380"
    10      networks:
    11        - backend
    12      image: "m3dbnode_integration:${REVISION}"
    13    coordinator-cluster-a:
    14      expose:
    15        - "7201"
    16        - "7203"
    17        - "7204"
    18      ports:
    19        - "0.0.0.0:7201:7201"
    20        - "0.0.0.0:7203:7203"
    21        - "0.0.0.0:7204:7204"
    22      networks:
    23        - backend
    24      image: "m3coordinator_integration:${REVISION}"
    25      volumes:
    26        - "./m3coordinator-cluster-a.yml:/etc/m3coordinator/m3coordinator.yml"
    27    dbnode-cluster-b:
    28      expose:
    29        - "9000-9004"
    30        - "2379-2380"
    31      ports:
    32        - "0.0.0.0:19000-19004:9000-9004"
    33        - "0.0.0.0:12379-12380:2379-2380"
    34      networks:
    35        - backend
    36      image: "m3dbnode_integration:${REVISION}"
    37    coordinator-cluster-b:
    38      expose:
    39        - "7201"
    40        - "7203"
    41        - "7204"
    42      ports:
    43        - "0.0.0.0:17201:7201"
    44        - "0.0.0.0:17203:7203"
    45        - "0.0.0.0:17204:7204"
    46      networks:
    47        - backend
    48      image: "m3coordinator_integration:${REVISION}"
    49      volumes:
    50        - "./m3coordinator-cluster-b.yml:/etc/m3coordinator/m3coordinator.yml"
    51    dbnode-cluster-c:
    52      expose:
    53        - "9000-9004"
    54        - "2379-2380"
    55      ports:
    56        - "0.0.0.0:29000-29004:9000-9004"
    57        - "0.0.0.0:22379-22380:2379-2380"
    58      networks:
    59        - backend
    60      image: "m3dbnode_integration:${REVISION}"
    61    coordinator-cluster-c:
    62      expose:
    63        - "7201"
    64        - "7203"
    65        - "7204"
    66      ports:
    67        - "0.0.0.0:27201:7201"
    68        - "0.0.0.0:27203:7203"
    69        - "0.0.0.0:27204:7204"
    70      networks:
    71        - backend
    72      image: "m3coordinator_integration:${REVISION}"
    73      volumes:
    74        - "./m3coordinator-cluster-c.yml:/etc/m3coordinator/m3coordinator.yml"
    75  networks:
    76    backend: