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. |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 4 | # Modification (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 | f05a503 | 2021-03-03 18:27:54 -0500 | [diff] [blame] | 24 | # image: cps-service:${VERSION} |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 25 | # volumes: |
| 26 | # - "./application.yml:/app/resources/application.yml" |
| 27 | # ports: |
| 28 | # - "8881:8080" |
| 29 | # environment: |
| 30 | # DB_HOST: ${DB_HOST} |
| 31 | # DB_USERNAME: ${DB_USERNAME} |
| 32 | # DB_PASSWORD: ${DB_PASSWORD} |
| 33 | # restart: unless-stopped |
| 34 | # depends_on: |
| 35 | # - dbpostgresql |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 36 | |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 37 | #ncmp-standalone: |
| 38 | # container_name: cps-ncmp |
| 39 | # image: cps-ncmp:${VERSION} |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 40 | # volumes: |
| 41 | # - "./application.yml:/app/resources/application.yml" |
| 42 | # ports: |
| 43 | # - "8882:8080" |
| 44 | # environment: |
| 45 | # DB_HOST: ${DB_HOST} |
| 46 | # DB_USERNAME: ${DB_USERNAME} |
| 47 | # DB_PASSWORD: ${DB_PASSWORD} |
| 48 | # restart: unless-stopped |
| 49 | # depends_on: |
| 50 | # - dbpostgresql |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 51 | |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 52 | cps-and-ncmp: |
| 53 | container_name: cps-and-ncmp |
| 54 | image: cps-and-ncmp:${VERSION} |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 55 | ports: |
| 56 | - "8883:8080" |
| 57 | environment: |
Renu Kumari | d138529 | 2021-04-01 10:44:31 -0400 | [diff] [blame^] | 58 | DB_HOST: dbpostgresql |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 59 | DB_USERNAME: ${DB_USERNAME} |
| 60 | DB_PASSWORD: ${DB_PASSWORD} |
| 61 | restart: unless-stopped |
| 62 | depends_on: |
| 63 | - dbpostgresql |
Ruslan Kashapov | 1e5bd94 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 64 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 65 | dbpostgresql: |
| 66 | container_name: dbpostgresql |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 67 | image: postgres:12.4-alpine |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 68 | ports: |
| 69 | - '5432:5432' |
| 70 | environment: |
Claudio David Gasparini | 5faa49c | 2020-11-12 08:28:07 +0100 | [diff] [blame] | 71 | POSTGRES_DB: cpsdb |
| 72 | POSTGRES_USER: ${DB_USERNAME} |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 73 | POSTGRES_PASSWORD: ${DB_PASSWORD} |