blob: 506b9d73ec48e0ba519c06e9c3a66091af225be0 [file] [log] [blame]
shivasubedif4b36ef2021-06-23 16:01:10 +01001# ============LICENSE_START=======================================================
mpriyank145a1432022-03-23 17:14:33 +05302# Copyright (C) 2021-2022 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
mpriyank145a1432022-03-23 17:14:33 +053025 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.2.0-SNAPSHOT-latest}
shivasubedif4b36ef2021-06-23 16:01:10 +010026 ports:
tragait641cdb42021-10-19 16:38:16 +010027 - ${DMI_PORT:-8783}:8080
28 - ${DMI_MANAGEMENT_PORT:-8787}:8081
shivasubedif4b36ef2021-06-23 16:01:10 +010029 environment:
tragait641cdb42021-10-19 16:38:16 +010030 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
31 CPS_PASSWORD: ${CPS_CORE_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}
tragait641cdb42021-10-19 16:38:16 +010041 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
42 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
shivasubedif4b36ef2021-06-23 16:01:10 +010043 restart: unless-stopped