Pull in all pom changes, merge, and review
[aaf/authz.git] / auth / auth-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 # *\r
21 #-------------------------------------------------------------------------------\r
22 version: '2'\r
23 services:\r
24   aaf_container:\r
25     image: attos/aaf\r
26     ports:\r
27       - "8101:8101"\r
28     links:\r
29       - cassandra_container\r
30     volumes:\r
31     # - ./authAPI.props:/opt/app/aaf/authz-service/2.0.15/etc/authAPI.props\r
32       - ./wait_for_host_port.sh:/tmp/wait_for_host_port.sh\r
33       - ./data2:/data\r
34     # - ./runaafcli.sh:/opt/app/aaf/authz-service/2.0.15/runaafcli.sh\r
35     #  - ./com.osaaf.common.props:/opt/app/aaf/authz-service/2.0.15/etc/com.osaaf.common.props\r
36     # - ./cadi-core-2.1.0.jar:/opt/app/aaf/authz-service/2.0.15/lib/cadi-core-2.1.0.jar\r
37     #  - ./cadi-aaf-2.1.0.jar:/opt/app/aaf/authz-service/2.0.15/lib/cadi-aaf-2.1.0.jar\r
38     # - ./cadi-client-2.1.0.jar:/opt/app/aaf/authz-service/2.0.15/lib/cadi-client-2.1.0.jar\r
39     # - ./authz-service-2.0.15.jar:/opt/app/aaf/authz-service/2.0.15/lib/authz-service-2.0.15.jar\r
40     #  - ./dme2-3.1.200.jar:/opt/app/aaf/authz-service/2.0.15/lib/dme2-3.1.200.jar\r
41     entrypoint: ["bash", "-c", "/tmp/wait_for_host_port.sh cassandra_container 9042; sleep 20; /bin/sh -c ./startup.sh"]\r
42     environment:\r
43       - CASSANDRA_CLUSTER=cassandra_container\r
44     \r
45 \r
46   cassandra_container:\r
47     image: cassandra:2.1.16\r
48     ports:\r
49       - "7000:7000"\r
50       - "7001:7001"\r
51       - "9042:9042"\r
52       - "9160:9160"\r
53     volumes:\r
54       - ./data:/data\r
55       - ./wait_for_host_port.sh:/tmp/wait_for_host_port.sh\r
56     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