santanude | 48a8415 | 2021-12-09 15:02:27 +0530 | [diff] [blame] | 1 | |
santanude | 37c6780 | 2021-12-09 12:43:37 +0530 | [diff] [blame] | 2 | # Copyright 2021 Xoriant Corporation
|
| 3 | #
|
| 4 | # Licensed under the Apache License, Version 2.0 (the "License");
|
| 5 | # you may not use this file except in compliance with the License.
|
| 6 | # You may obtain a copy of the License at
|
| 7 | #
|
| 8 | # http://www.apache.org/licenses/LICENSE-2.0
|
| 9 | #
|
| 10 | # Unless required by applicable law or agreed to in writing, software
|
| 11 | # distributed under the License is distributed on an "AS IS" BASIS,
|
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 13 | # See the License for the specific language governing permissions and
|
| 14 | # limitations under the License.
|
| 15 | #
|
| 16 | #
|
| 17 | default: all
|
| 18 |
|
| 19 | all:
|
santanude | 37c6780 | 2021-12-09 12:43:37 +0530 | [diff] [blame] | 20 | cd collector; make
|
| 21 | cd kafka; make
|
| 22 | cd dmaapadapter; make
|
| 23 | cd influxdb-connector; make
|
santanude | 48a8415 | 2021-12-09 15:02:27 +0530 | [diff] [blame] | 24 | cd postconfig; make |
santanude | 37c6780 | 2021-12-09 12:43:37 +0530 | [diff] [blame] | 25 |
|
| 26 | run:
|
| 27 | docker-compose up -d
|
| 28 |
|
| 29 | stop:
|
| 30 | docker-compose down
|
| 31 |
|
| 32 | clean:
|
| 33 | docker rm `docker ps -a -q -f status=exited`
|