AT&T 2.0.19 Code drop, stage 4
[aaf/authz.git] / authz-service / src / main / resources / docker-compose / docker-compose.yml
1 #-------------------------------------------------------------------------------\r
2 # ============LICENSE_START====================================================\r
3 # * org.onap.aaf\r
4 # * ===========================================================================\r
5 # * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6 # * ===========================================================================\r
7 # * Licensed under the Apache License, Version 2.0 (the "License");\r
8 # * you may not use this file except in compliance with the License.\r
9 # * You may obtain a copy of the License at\r
10 # * \r
11 #  *      http://www.apache.org/licenses/LICENSE-2.0\r
12 # * \r
13 #  * Unless required by applicable law or agreed to in writing, software\r
14 # * distributed under the License is distributed on an "AS IS" BASIS,\r
15 # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16 # * See the License for the specific language governing permissions and\r
17 # * limitations under the License.\r
18 # * ============LICENSE_END====================================================\r
19 # *\r
20 # * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21 # *\r
22 #-------------------------------------------------------------------------------\r
23 version: '2'\r
24 services:\r
25   aaf_container:\r
26     image: attos/aaf\r
27     ports:\r
28       - "8101:8101"\r
29 \r
30     links:\r
31       - cassandra_container\r
32     volumes:\r
33     # - ./authAPI.props:/opt/app/aaf/authz-service/2.0.15/etc/authAPI.props\r
34       - ./wait_for_host_port.sh:/tmp/wait_for_host_port.sh\r
35       - ./data2:/data\r
36     # - ./runaafcli.sh:/opt/app/aaf/authz-service/2.0.15/runaafcli.sh\r
37     #  - ./com.osaaf.common.props:/opt/app/aaf/authz-service/2.0.15/etc/com.osaaf.common.props\r
38     # - ./cadi-core-1.3.0.jar:/opt/app/aaf/authz-service/2.0.15/lib/cadi-core-1.3.0.jar\r
39     #  - ./cadi-aaf-1.3.0.jar:/opt/app/aaf/authz-service/2.0.15/lib/cadi-aaf-1.3.0.jar\r
40     # - ./cadi-client-1.3.0.jar:/opt/app/aaf/authz-service/2.0.15/lib/cadi-client-1.3.0.jar\r
41     # - ./authz-service-2.0.15.jar:/opt/app/aaf/authz-service/2.0.15/lib/authz-service-2.0.15.jar\r
42     #  - ./dme2-3.1.200.jar:/opt/app/aaf/authz-service/2.0.15/lib/dme2-3.1.200.jar\r
43     entrypoint: ["bash", "-c", "/tmp/wait_for_host_port.sh cassandra_container 9042; sleep 20; /bin/sh -c ./startup.sh"]\r
44     environment:\r
45       - CASSANDRA_CLUSTER=cassandra_container\r
46     \r
47 \r
48   cassandra_container:\r
49     image: cassandra:2.1.16\r
50     ports:\r
51       - "7000:7000"\r
52       - "7001:7001"\r
53       - "9042:9042"\r
54       - "9160:9160"\r
55     volumes:\r
56       - ./data:/data\r
57       - ./wait_for_host_port.sh:/tmp/wait_for_host_port.sh\r
58     entrypoint: ["bash", "-c", "(/tmp/wait_for_host_port.sh localhost 9042 cqlsh --file /data/init.cql -u cassandra -p cassandra localhost; cqlsh --file /data/ecomp.cql -u cassandra -p cassandra localhost) & (/docker-entrypoint.sh cassandra -f)"]\r