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

     1  version: "3.5"
     2  services:
     3    dbnode01:
     4      expose:
     5        - "9000-9004"
     6        - "2379-2380"
     7        - "7201"
     8      ports:
     9        - "0.0.0.0:9000-9004:9000-9004"
    10        - "0.0.0.0:2379-2380:2379-2380"
    11        - "0.0.0.0:7201:7201"
    12      networks:
    13        - backend
    14      image: "m3dbnode_integration:${REVISION}"
    15    m3coordinator01:
    16      expose:
    17        - "7202"
    18        - "7203"
    19        - "7204"
    20      ports:
    21        - "0.0.0.0:7202:7202"
    22        - "0.0.0.0:7203:7203"
    23        - "0.0.0.0:7204:7204"
    24      networks:
    25        - backend
    26      image: "m3coordinator_integration:${REVISION}"
    27      volumes:
    28        - "./m3coordinator.yml:/etc/m3coordinator/m3coordinator.yml"
    29    m3aggregator01:
    30      expose:
    31        - "6001"
    32      ports:
    33        - "127.0.0.1:6001:6001"
    34      networks:
    35        - backend
    36      environment:
    37        - M3AGGREGATOR_HOST_ID=m3aggregator01
    38      image: "m3aggregator_integration:${REVISION}"
    39      volumes:
    40        - "./m3aggregator.yml:/etc/m3aggregator/m3aggregator.yml"
    41    m3aggregator02:
    42      networks:
    43        - backend
    44      environment:
    45        - M3AGGREGATOR_HOST_ID=m3aggregator02
    46      image: "m3aggregator_integration:${REVISION}"
    47      volumes:
    48        - "./m3aggregator.yml:/etc/m3aggregator/m3aggregator.yml"
    49  networks:
    50    backend: