d97cbeb847be389cabf6a8fc80356ed0eb2ba53c
[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   #cps-standalone:
23   #  container_name: cps-service
24   #  image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-service:${VERSION:-latest}
25   #  ports:
26   #    - "8881:8080"
27   #    - "8887:8081"
28   #  environment:
29   #    CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
30   #    CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
31   #    DB_HOST: dbpostgresql
32   #    DB_USERNAME: ${DB_USERNAME:-cps}
33   #    DB_PASSWORD: ${DB_PASSWORD:-cps}
34   #    #KAFKA_BOOTSTRAP_SERVER: kafka:9092
35   #    #notification.data-updated.enabled: 'true'
36   #    #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
37   #  restart: unless-stopped
38   #  depends_on:
39   #    - dbpostgresql
40
41   #ncmp-standalone:
42   #  container_name: cps-ncmp
43   #  image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-ncmp:${VERSION:-latest}
44   #  ports:
45   #    - "8882:8080"
46   #    - "8887:8081"
47   #  environment:
48   #    CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
49   #    CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
50   #    DB_HOST: dbpostgresql
51   #    DB_USERNAME: ${DB_USERNAME:-cps}
52   #    DB_PASSWORD: ${DB_PASSWORD:-cps}
53   #    DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
54   #    DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
55   #    #KAFKA_BOOTSTRAP_SERVER: kafka:9092
56   #    #notification.data-updated.enabled: 'true'
57   #    #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
58   #  restart: unless-stopped
59   #  depends_on:
60   #    - dbpostgresql
61
62   cps-and-ncmp:
63     container_name: cps-and-ncmp
64     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${VERSION:-latest}
65     ports:
66       - "8883:8080"
67       - "8887:8081"
68     environment:
69       CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
70       CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
71       DB_HOST: dbpostgresql
72       DB_USERNAME: ${DB_USERNAME:-cps}
73       DB_PASSWORD: ${DB_PASSWORD:-cps}
74       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
75       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
76       #KAFKA_BOOTSTRAP_SERVER: kafka:9092
77       #notification.data-updated.enabled: 'true'
78       #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
79     restart: unless-stopped
80     depends_on:
81       - dbpostgresql
82
83   dbpostgresql:
84     container_name: dbpostgresql
85     image: postgres:13.2-alpine
86     ports:
87       - '5432:5432'
88     environment:
89       POSTGRES_DB: cpsdb
90       POSTGRES_USER: ${DB_USERNAME:-cps}
91       POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
92
93 #  zookeeper:
94 #    image: confluentinc/cp-zookeeper:6.1.1
95 #    environment:
96 #      ZOOKEEPER_CLIENT_PORT: 2181
97 #      ZOOKEEPER_TICK_TIME: 2000
98 #    ports:
99 #      - 22181:2181
100 #
101 #  kafka:
102 #    image: confluentinc/cp-kafka:6.1.1
103 #    depends_on:
104 #      - zookeeper
105 #    ports:
106 #      - 29092:29092
107 #    environment:
108 #      KAFKA_BROKER_ID: 1
109 #      KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
110 #      KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
111 #      KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
112 #      KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
113 #      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1