-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
executable file
·32 lines (28 loc) · 950 Bytes
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
###############################################################################
### Whale&Jaguar Platform Configuration
###
### This file defines configuration used in the Makefile.
### You may add and/or override these values with your own custom configuration
### in `config.local.mk`.
###
### Please see GNU Makes multi-line variable documentation for more info.
### https://www.gnu.org/software/make/manual/html_node/Multi_002dLine.html
###############################################################################
# List of tools that must be installed.
# A simple check to determine the tool is available. No version check, etc.
define REQUIRED_SOFTWARE
docker \
docker-compose \
git
endef
# Defined here are the project configuration
define SERVICES
recommender-app \
recommender-db \
recommender-search \
recommender-login
endef
# List of user defined networks that should be created.
define DOCKER_NETWORKS
recommender.localhost
endef