aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dcaegen2/prh-testcases/resources/docker-compose.yml
blob: bf50c7ab3232e54683996a97f9689c11e66c1fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "2.2"
services:
  prh:
    image: nexus3.onap.org:10001/onap/org.onap.dcaegen2.services.prh.prh-app-server:latest
    ports:
      - "8100:8100"
      - "8433:8433"
    volumes:
      - ./simulator/certs:/tmp/certs
      - ./prh_configs/prh_config_volume:/app-config
    environment:
      - HOSTNAME=dcae-prh
      - CONSUL_HOST                # not in use, but still required by SDK - should be removed later on
      - CONFIG_BINDING_SERVICE
      - CONFIG_BINDING_SERVICE_SERVICE_PORT
    container_name: prh
    depends_on:
      dmaap-mr:
        condition: service_started
      aai:
        condition: service_started

  dmaap-mr:
    build:
      context: simulator
      dockerfile: DMaaP_simulator
    ports:
      - "2222:2222"
      - "2223:2223"
      - "2224:2224"
    container_name: dmaap_simulator

  aai:
    build:
      context: simulator
      dockerfile: AAI_simulator
    ports:
      - "3333:3333"
      - "3334:3334"
      - "3335:3335"
    container_name: aai_simulator