Bilal A | 95097c2 | 2019-04-12 22:38:32 +0000 | [diff] [blame] | 1 | # Copyright 2019 AT&T Intellectual Property. All rights reserved |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | version: '2' |
| 15 | networks: |
| 16 | default: |
| 17 | driver: bridge |
| 18 | services: |
| 19 | mariadb: |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 20 | image: mariadb:${POLICY_MARIADB_VER} |
Bilal A | 95097c2 | 2019-04-12 22:38:32 +0000 | [diff] [blame] | 21 | container_name: mariadb |
| 22 | hostname: mariadb |
| 23 | command: ['--lower-case-table-names=1', '--wait_timeout=28800'] |
| 24 | env_file: config/db/db.conf |
| 25 | volumes: |
| 26 | - ./config/db:/docker-entrypoint-initdb.d |
| 27 | ports: |
| 28 | - "3306:3306" |
| 29 | api: |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 30 | image: nexus3.onap.org:10001/onap/policy-api:${POLICY_API_VERSION} |
Bilal A | 95097c2 | 2019-04-12 22:38:32 +0000 | [diff] [blame] | 31 | container_name: policy-api |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 32 | depends_on: |
Bilal A | 95097c2 | 2019-04-12 22:38:32 +0000 | [diff] [blame] | 33 | - mariadb |
| 34 | hostname: policy-api |
| 35 | ports: |
| 36 | - "6969:6969" |
| 37 | start_dependencies: |
| 38 | image: dadarek/wait-for-dependencies |
Jim Hahn | 954af93 | 2019-06-03 15:00:08 -0400 | [diff] [blame] | 39 | environment: |
| 40 | TIMEOUT_LENGTH: 60 |
Bilal A | 95097c2 | 2019-04-12 22:38:32 +0000 | [diff] [blame] | 41 | container_name: policy-wait |
| 42 | depends_on: |
| 43 | - mariadb |
| 44 | hostname: policy-wait |
| 45 | command: mariadb:3306 |
Jim Hahn | 954af93 | 2019-06-03 15:00:08 -0400 | [diff] [blame] | 46 | start_all: |
| 47 | image: dadarek/wait-for-dependencies |
| 48 | environment: |
| 49 | TIMEOUT_LENGTH: 60 |
| 50 | container_name: policy-wait-all |
| 51 | depends_on: |
| 52 | - mariadb |
| 53 | - api |
| 54 | hostname: policy-wait-all |
| 55 | command: |
| 56 | mariadb:3306 |
| 57 | api:6969 |