Added 4 new TC
[integration.git] / test / csit / tests / dcaegen2 / prh_testcases / resources / docker-compose.yml
index 7d1fcd5..e27d845 100644 (file)
@@ -1,11 +1,11 @@
-version: '2'
+version: '3'
 services:
   prh:
     image: nexus3.onap.org:10003/onap/org.onap.dcaegen2.services.prh.prh-app-server
     command: >
           --dmaap.dmaapConsumerConfiguration.dmaapPortNumber=2222
           --dmaap.dmaapProducerConfiguration.dmaapPortNumber=2222
-          --aai.aaiClientConfiguration.aaiHostPortNumber=2222
+          --aai.aaiClientConfiguration.aaiHostPortNumber=3333
           --aai.aaiClientConfiguration.aaiProtocol=http
     entrypoint:
       - java
@@ -17,13 +17,28 @@ services:
       - "8100:8100"
       - "8433:8433"
     container_name: prh
+   
   dmaap_simulator:
     build:
-      context: .
+      context: simulator
+      dockerfile: DMaaP_simulator
       args:
         - https_proxy=${HTTPS_PROXY}
     ports:
       - "2222:2222"
     container_name: dmaap_simulator
     depends_on:
-      - prh
\ No newline at end of file
+      - prh
+      
+  aai_simulator:
+     build:
+       context: simulator
+       dockerfile: AAI_simulator
+       args:
+         - https_proxy=${HTTPS_PROXY}
+     ports:
+      - "3333:3333"
+     container_name: aai_simulator
+     depends_on:
+       - prh
+   
\ No newline at end of file