nexus registry is parmateterized
[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: 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}
32   #    DB_PASSWORD: ${DB_PASSWORD}
33   #  restart: unless-stopped
34   #  depends_on:
35   #    - dbpostgresql
36
37   #ncmp-standalone:
38   #  container_name: cps-ncmp
39   #  image: onap/cps-ncmp:${VERSION:-latest}
40   #  ports:
41   #    - "8882:8080"
42   #  environment:
43   #    CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
44   #    CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
45   #    DB_HOST: dbpostgresql
46   #    DB_USERNAME: ${DB_USERNAME}
47   #    DB_PASSWORD: ${DB_PASSWORD}
48   #  restart: unless-stopped
49   #  depends_on:
50   #    - dbpostgresql
51
52   cps-and-ncmp:
53     container_name: cps-and-ncmp
54     image: onap/cps-and-ncmp:${VERSION:-latest}
55     ports:
56       - "8883:8080"
57     environment:
58       CPS_USERNAME: ${CPS_USERNAME:-cpsuser}
59       CPS_PASSWORD: ${CPS_PASSWORD:-cpsr0cks!}
60       DB_HOST: dbpostgresql
61       DB_USERNAME: ${DB_USERNAME}
62       DB_PASSWORD: ${DB_PASSWORD}
63     restart: unless-stopped
64     depends_on:
65       - dbpostgresql
66
67   dbpostgresql:
68     container_name: dbpostgresql
69     image: postgres:13.2-alpine
70     ports:
71       - '5432:5432'
72     environment:
73       POSTGRES_DB: cpsdb
74       POSTGRES_USER: ${DB_USERNAME}
75       POSTGRES_PASSWORD: ${DB_PASSWORD}