Merge "PoC Contract Stubs NCMP Rest Endpoints"
[cps.git] / docker-compose / docker-compose.yml
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2020 Pantheon.tech.
3 # Modifications Copyright (C) 2021 Bell Canada.
4 # Modifications Copyright (C) 2021-2022 Nordix Foundation.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 version: "3.7"
20
21 services:
22   ### Services cps-service, cps-ncmp, zookeeper and kafka are commented below, these
23   ### services can be un-commented and used on need to use basis. Only minimal
24   ### services will run (dbpostgresql, cps-and-ncmp and ncmp-dmi-plugin) by default.
25
26   #cps-standalone:
27   #  container_name: cps-service
28   #  image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-service:${VERSION:-latest}
29   #  ports:
30   #    - "8881:8080"
31   #    - "8887:8081"
32   #  environment:
33   #    CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
34   #    CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
35   #    DB_HOST: dbpostgresql
36   #    DB_USERNAME: ${DB_USERNAME:-cps}
37   #    DB_PASSWORD: ${DB_PASSWORD:-cps}
38   #    #KAFKA_BOOTSTRAP_SERVER: kafka:9092
39   #    #notification.data-updated.enabled: 'true'
40   #    #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
41   #  restart: unless-stopped
42   #  depends_on:
43   #    - dbpostgresql
44
45   #ncmp-standalone:
46   #  container_name: cps-ncmp
47   #  image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-ncmp:${VERSION:-latest}
48   #  ports:
49   #    - "8882:8080"
50   #    - "8887:8081"
51   #  environment:
52   #    CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
53   #    CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
54   #    DB_HOST: dbpostgresql
55   #    DB_USERNAME: ${DB_USERNAME:-cps}
56   #    DB_PASSWORD: ${DB_PASSWORD:-cps}
57   #    DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
58   #    DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
59   #    #KAFKA_BOOTSTRAP_SERVER: kafka:9092
60   #    #notification.data-updated.enabled: 'true'
61   #    #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
62   #  restart: unless-stopped
63   #  depends_on:
64   #    - dbpostgresql
65
66   #  zookeeper:
67   #    image: confluentinc/cp-zookeeper:6.2.1
68   #    environment:
69   #      ZOOKEEPER_CLIENT_PORT: 2181
70   #      ZOOKEEPER_TICK_TIME: 2000
71   #    ports:
72   #      - 22181:2181
73   #
74   #  kafka:
75   #    image: confluentinc/cp-kafka:6.2.1
76   #    depends_on:
77   #      - zookeeper
78   #    ports:
79   #      - 29092:29092
80   #    environment:
81   #      KAFKA_BROKER_ID: 1
82   #      KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
83   #      KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
84   #      KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
85   #      KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
86   #      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
87
88   dbpostgresql:
89     container_name: dbpostgresql
90     image: postgres:13.2-alpine
91     ports:
92       - ${DB_PORT:-5432}:5432
93     environment:
94       POSTGRES_DB: cpsdb
95       POSTGRES_USER: ${DB_USERNAME:-cps}
96       POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
97
98   cps-and-ncmp:
99     container_name: cps-and-ncmp
100     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
101     ports:
102       - ${CPS_CORE_PORT:-8883}:8080
103       - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081
104     environment:
105       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
106       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
107       DB_HOST: ${DB_HOST:-dbpostgresql}
108       DB_USERNAME: ${DB_USERNAME:-cps}
109       DB_PASSWORD: ${DB_PASSWORD:-cps}
110       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
111       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
112       KAFKA_BOOTSTRAP_SERVER: kafka:9092
113       notification.data-updated.enabled: 'true'
114       NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
115       TIMERS_ADVISED-MODULES-SYNC_SLEEP-TIME-MS: 2000
116     restart: unless-stopped
117     depends_on:
118       - dbpostgresql
119
120   ### if kafka is not required comment out zookeeper and kafka ###
121   zookeeper:
122     image: confluentinc/cp-zookeeper:6.2.1
123     container_name: zookeeper
124     ports:
125       - '2181:2181'
126     environment:
127       ZOOKEEPER_CLIENT_PORT: 2181
128
129   kafka:
130     image: confluentinc/cp-kafka:6.2.1
131     container_name: kafka
132     ports:
133       - "19092:19092"
134     depends_on:
135       - zookeeper
136     environment:
137       KAFKA_BROKER_ID: 1
138       KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
139       KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,CONNECTIONS_FROM_HOST://localhost:19092
140       KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
141       KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
142
143   ### Comment out this section if dmi plugin is not required ###
144   ncmp-dmi-plugin:
145     container_name: ncmp-dmi-plugin
146     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.2.0-SNAPSHOT-latest}
147     ports:
148       - ${DMI_PORT:-8783}:8080
149       - ${DMI_MANAGEMENT_PORT:-8787}:8081
150     environment:
151       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
152       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
153       CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
154       CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
155       CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
156       CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
157       SDNC_HOST: ${SDNC_HOST:-sdnc}
158       SDNC_PORT: ${SDNC_PORT:-8181}
159       SDNC_USERNAME: ${SDNC_USERNAME:-admin}
160       SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
161       DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
162       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
163       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
164       KAFKA_BOOTSTRAP_SERVER: kafka:9092
165       notification.data-updated.enabled: 'true'
166       NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
167     restart: unless-stopped