blob: 970f1168568d72da8bec44cc96eeb701954f601e [file] [log] [blame]
Bilal A95097c22019-04-12 22:38:32 +00001# 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.
14version: '2'
15networks:
16 default:
17 driver: bridge
18services:
19 mariadb:
Bilal Ad46ab2e2019-06-07 21:25:59 +000020 image: mariadb:${POLICY_MARIADB_VER}
Bilal A95097c22019-04-12 22:38:32 +000021 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 pap:
Bilal Ad46ab2e2019-06-07 21:25:59 +000030 image: nexus3.onap.org:10001/onap/policy-pap:${POLICY_PAP_VERSION}
Bilal A95097c22019-04-12 22:38:32 +000031 container_name: policy-pap
Bilal Ad46ab2e2019-06-07 21:25:59 +000032 depends_on:
Jim Hahn954af932019-06-03 15:00:08 -040033 - mariadb
Bilal A95097c22019-04-12 22:38:32 +000034 hostname: policy-pap
35 ports:
36 - "6969:6969"
Jim Hahn0a594cf2019-04-19 12:47:01 -040037 api:
Bilal Ad46ab2e2019-06-07 21:25:59 +000038 image: nexus3.onap.org:10001/onap/policy-api:${POLICY_API_VERSION}
Jim Hahn0a594cf2019-04-19 12:47:01 -040039 container_name: policy-api
40 depends_on:
41 - mariadb
42 hostname: policy-api
43 ports:
44 - "9969:6969"
Bilal A95097c22019-04-12 22:38:32 +000045 start_dependencies:
46 image: dadarek/wait-for-dependencies
Jim Hahn954af932019-06-03 15:00:08 -040047 environment:
48 TIMEOUT_LENGTH: 60
Bilal A95097c22019-04-12 22:38:32 +000049 container_name: policy-wait
50 depends_on:
51 - mariadb
52 hostname: policy-wait
53 command: mariadb:3306
Jim Hahn954af932019-06-03 15:00:08 -040054 start_all:
55 image: dadarek/wait-for-dependencies
56 environment:
57 TIMEOUT_LENGTH: 60
58 container_name: policy-wait-all
59 depends_on:
60 - mariadb
61 - pap
62 - api
63 hostname: policy-wait-all
64 command:
65 mariadb:3306
66 pap:6969
67 api:6969