blob: 7761d7d91b42486cd7c8194fd84586630b61ec95 [file] [log] [blame]
santanude48a84152021-12-09 15:02:27 +05301
santanude37c67802021-12-09 12:43:37 +05302# 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#
17default: all
18
19all:
santanude37c67802021-12-09 12:43:37 +053020 cd collector; make
21 cd kafka; make
22 cd dmaapadapter; make
23 cd influxdb-connector; make
santanude48a84152021-12-09 15:02:27 +053024 cd postconfig; make
santanude37c67802021-12-09 12:43:37 +053025
26run:
27 docker-compose up -d
28
29stop:
30 docker-compose down
31
32clean:
33 docker rm `docker ps -a -q -f status=exited`