Updated the documentation with limitation of leaf condition
[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 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.1.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.1.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     restart: unless-stopped
116     depends_on:
117       - dbpostgresql