CmHandleState transition using state handler
[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) 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 services:
20
21   ### docker-compose up -d -> run ALL services ###
22   ### to disable notifications make notification.enabled to false & comment out kafka/zookeeper services ###
23
24   dbpostgresql:
25     container_name: dbpostgresql
26     image: postgres:14.1-alpine
27     ports:
28       - ${DB_PORT:-5432}:5432
29     environment:
30       POSTGRES_DB: cpsdb
31       POSTGRES_USER: ${DB_USERNAME:-cps}
32       POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
33
34   cps-and-ncmp:
35     container_name: cps-and-ncmp
36     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
37     ports:
38       - ${CPS_CORE_PORT:-8883}:8080
39       - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081
40     environment:
41       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
42       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
43       DB_HOST: ${DB_HOST:-dbpostgresql}
44       DB_USERNAME: ${DB_USERNAME:-cps}
45       DB_PASSWORD: ${DB_PASSWORD:-cps}
46       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
47       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
48       KAFKA_BOOTSTRAP_SERVER: kafka:9092
49       notification.enabled: 'true'
50       notification.async.executor.time-out-value-in-ms: 2000
51       NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
52       TIMERS_ADVISED-MODULES-SYNC_SLEEP-TIME-MS: 2000
53     restart: unless-stopped
54     depends_on:
55       - dbpostgresql
56
57   ### if kafka is not required comment out zookeeper and kafka ###
58   zookeeper:
59     image: confluentinc/cp-zookeeper:6.2.1
60     container_name: zookeeper
61     ports:
62       - '2181:2181'
63     environment:
64       ZOOKEEPER_CLIENT_PORT: 2181
65
66   kafka:
67     image: confluentinc/cp-kafka:6.2.1
68     container_name: kafka
69     ports:
70       - "19092:19092"
71     depends_on:
72       - zookeeper
73     environment:
74       KAFKA_BROKER_ID: 1
75       KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
76       KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,CONNECTIONS_FROM_HOST://localhost:19092
77       KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
78       KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
79
80   ### Comment out this section if dmi plugin is not required ###
81   ncmp-dmi-plugin:
82     container_name: ncmp-dmi-plugin
83     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.2.0-SNAPSHOT-latest}
84     ports:
85       - ${DMI_PORT:-8783}:8080
86       - ${DMI_MANAGEMENT_PORT:-8787}:8081
87     environment:
88       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
89       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
90       CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
91       CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
92       CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
93       CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
94       SDNC_HOST: ${SDNC_HOST:-sdnc}
95       SDNC_PORT: ${SDNC_PORT:-8181}
96       SDNC_USERNAME: ${SDNC_USERNAME:-admin}
97       SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
98       DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
99       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
100       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
101       KAFKA_BOOTSTRAP_SERVER: kafka:9092
102       notification.data-updated.enabled: 'true'
103       NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
104     restart: unless-stopped