Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (c) 2020 Pantheon.tech. |
| 3 | # Modifications Copyright (C) 2021 Bell Canada. |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 4 | # Modifications Copyright (C) 2021 Nordix Foundation |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 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 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 19 | version: "3.7" |
| 20 | |
| 21 | services: |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 22 | #cps-standalone: |
| 23 | # container_name: cps-service |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 24 | # image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-service:${VERSION:-latest} |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 25 | # ports: |
| 26 | # - "8881:8080" |
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 27 | # - "8887:8081" |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 28 | # environment: |
Renu Kumari | bd35b4d | 2021-05-17 07:16:48 -0400 | [diff] [blame] | 29 | # CPS_USERNAME: ${CPS_USERNAME:-cpsuser} |
| 30 | # CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!} |
| 31 | # DB_HOST: dbpostgresql |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 32 | # DB_USERNAME: ${DB_USERNAME:-cps} |
| 33 | # DB_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 34 | # #KAFKA_BOOTSTRAP_SERVER: kafka:9092 |
| 35 | # #notification.data-updated.enabled: 'true' |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 36 | # restart: unless-stopped |
| 37 | # depends_on: |
| 38 | # - dbpostgresql |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 39 | |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 40 | #ncmp-standalone: |
| 41 | # container_name: cps-ncmp |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 42 | # image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-ncmp:${VERSION:-latest} |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 43 | # ports: |
| 44 | # - "8882:8080" |
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 45 | # - "8887:8081" |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 46 | # environment: |
Renu Kumari | bd35b4d | 2021-05-17 07:16:48 -0400 | [diff] [blame] | 47 | # CPS_USERNAME: ${CPS_USERNAME:-cpsuser} |
| 48 | # CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!} |
| 49 | # DB_HOST: dbpostgresql |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 50 | # DB_USERNAME: ${DB_USERNAME:-cps} |
| 51 | # DB_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 52 | # #KAFKA_BOOTSTRAP_SERVER: kafka:9092 |
| 53 | # #notification.data-updated.enabled: 'true' |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 54 | # restart: unless-stopped |
| 55 | # depends_on: |
| 56 | # - dbpostgresql |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 57 | |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 58 | cps-and-ncmp: |
| 59 | container_name: cps-and-ncmp |
ToineSiebelink | a401e72 | 2021-06-30 08:38:51 +0100 | [diff] [blame] | 60 | image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${VERSION:-latest} |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 61 | ports: |
| 62 | - "8883:8080" |
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 63 | - "8887:8081" |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 64 | environment: |
Renu Kumari | 3da5207 | 2021-04-14 10:14:13 -0400 | [diff] [blame] | 65 | CPS_USERNAME: ${CPS_USERNAME:-cpsuser} |
| 66 | CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!} |
Renu Kumari | d138529 | 2021-04-01 10:44:31 -0400 | [diff] [blame] | 67 | DB_HOST: dbpostgresql |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 68 | DB_USERNAME: ${DB_USERNAME:-cps} |
| 69 | DB_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 70 | #KAFKA_BOOTSTRAP_SERVER: kafka:9092 |
| 71 | #notification.data-updated.enabled: 'true' |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 72 | restart: unless-stopped |
| 73 | depends_on: |
| 74 | - dbpostgresql |
Ruslan Kashapov | 1e5bd94 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 75 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 76 | dbpostgresql: |
| 77 | container_name: dbpostgresql |
Rishi.Chail | e1c35f0 | 2021-04-23 11:51:42 +0100 | [diff] [blame] | 78 | image: postgres:13.2-alpine |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 79 | ports: |
| 80 | - '5432:5432' |
| 81 | environment: |
Claudio David Gasparini | 5faa49c | 2020-11-12 08:28:07 +0100 | [diff] [blame] | 82 | POSTGRES_DB: cpsdb |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 83 | POSTGRES_USER: ${DB_USERNAME:-cps} |
| 84 | POSTGRES_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 85 | |
| 86 | # zookeeper: |
| 87 | # image: confluentinc/cp-zookeeper:6.1.1 |
| 88 | # environment: |
| 89 | # ZOOKEEPER_CLIENT_PORT: 2181 |
| 90 | # ZOOKEEPER_TICK_TIME: 2000 |
| 91 | # ports: |
| 92 | # - 22181:2181 |
| 93 | # |
| 94 | # kafka: |
| 95 | # image: confluentinc/cp-kafka:6.1.1 |
| 96 | # depends_on: |
| 97 | # - zookeeper |
| 98 | # ports: |
| 99 | # - 29092:29092 |
| 100 | # environment: |
| 101 | # KAFKA_BROKER_ID: 1 |
| 102 | # KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 |
| 103 | # KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092 |
| 104 | # KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT |
| 105 | # KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT |
| 106 | # KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 |