blob: bec9bfec2dc5aef41bd9e8a99613474d69bb94dc [file] [log] [blame]
shivasubedif4b36ef2021-06-23 16:01:10 +01001# ============LICENSE_START=======================================================
2# Copyright (C) 2021 Nordix Foundation
puthuparambil.aditya08fe9712021-07-13 11:52:13 +01003# Modifications Copyright (C) 2021 Bell Canada.
shivasubedif4b36ef2021-06-23 16:01:10 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
lukegleesonb208aeb2021-07-08 16:48:15 +010016#
17# SPDX-License-Identifier: Apache-2.0
shivasubedif4b36ef2021-06-23 16:01:10 +010018# ============LICENSE_END=========================================================
19
20version: "3.7"
21
22services:
23 ncmp-dmi-plugin:
24 container_name: ncmp-dmi-plugin
25 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${VERSION:-latest}
26 ports:
puthuparambil.aditya08fe9712021-07-13 11:52:13 +010027 - "8783:8080"
28 - "8787:8081"
shivasubedif4b36ef2021-06-23 16:01:10 +010029 environment:
30 CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
31 CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
shivasubedifb4a41a2021-08-18 12:52:40 +010032 CPS_CORE_HOST: ${CPS_CORE_HOST:-cps}
33 CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
34 CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
35 CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
36 SDNC_HOST: ${SDNC_HOST:-sdnc}
37 SDNC_PORT: ${SDNC_PORT:-8181}
38 SDNC_USERNAME: ${SDNC_USERNAME:-admin}
39 SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
Renu Kumari3aea57e2021-10-12 13:41:01 -040040 DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
41 DMI_USERNAME: "cpsuser"
42 DMI_PASSWORD: "cpsr0cks!"
shivasubedif4b36ef2021-06-23 16:01:10 +010043 restart: unless-stopped