51bb162b20af40f60d539b67af52960ca0bb32d4
[cps.git] / docker-compose / docker-compose.yml
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2020 Pantheon.tech.
3 # Modifications Copyright (C) 2021 Bell Canada.
4 # Modification (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   #  environment:
28   #    CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
29   #    CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
30   #    DB_HOST: dbpostgresql
31   #    DB_USERNAME: ${DB_USERNAME:-cps}
32   #    DB_PASSWORD: ${DB_PASSWORD:-cps}
33   #    #KAFKA_BOOTSTRAP_SERVER: kafka:9092
34   #    #notification.data-updated.enabled: 'true'
35   #  restart: unless-stopped
36   #  depends_on:
37   #    - dbpostgresql
38
39   #ncmp-standalone:
40   #  container_name: cps-ncmp
41   #  image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-ncmp:${VERSION:-latest}
42   #  ports:
43   #    - "8882:8080"
44   #  environment:
45   #    CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
46   #    CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
47   #    DB_HOST: dbpostgresql
48   #    DB_USERNAME: ${DB_USERNAME:-cps}
49   #    DB_PASSWORD: ${DB_PASSWORD:-cps}
50   #    #KAFKA_BOOTSTRAP_SERVER: kafka:9092
51   #    #notification.data-updated.enabled: 'true'
52   #  restart: unless-stopped
53   #  depends_on:
54   #    - dbpostgresql
55
56   cps-and-ncmp:
57     container_name: cps-and-ncmp
58     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${VERSION:-latest}
59     ports:
60       - "8883:8080"
61     environment:
62       CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
63       CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
64       DB_HOST: dbpostgresql
65       DB_USERNAME: ${DB_USERNAME:-cps}
66       DB_PASSWORD: ${DB_PASSWORD:-cps}
67       #KAFKA_BOOTSTRAP_SERVER: kafka:9092
68       #notification.data-updated.enabled: 'true'
69     restart: unless-stopped
70     depends_on:
71       - dbpostgresql
72
73   dbpostgresql:
74     container_name: dbpostgresql
75     image: postgres:13.2-alpine
76     ports:
77       - '5432:5432'
78     environment:
79       POSTGRES_DB: cpsdb
80       POSTGRES_USER: ${DB_USERNAME:-cps}
81       POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
82
83 #  zookeeper:
84 #    image: confluentinc/cp-zookeeper:6.1.1
85 #    environment:
86 #      ZOOKEEPER_CLIENT_PORT: 2181
87 #      ZOOKEEPER_TICK_TIME: 2000
88 #    ports:
89 #      - 22181:2181
90 #
91 #  kafka:
92 #    image: confluentinc/cp-kafka:6.1.1
93 #    depends_on:
94 #      - zookeeper
95 #    ports:
96 #      - 29092:29092
97 #    environment:
98 #      KAFKA_BROKER_ID: 1
99 #      KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
100 #      KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
101 #      KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
102 #      KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
103 #      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1