This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
169 lines (137 loc) · 5.24 KB
/
Makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
########################################################################################################################
### Loading master ENV file
########################################################################################################################
include docker/.env
export $(shell sed 's/=.*//' docker/.env)
########################################################################################################################
### Defining run variables
########################################################################################################################
#################################################
### Get which is current OS
#################################################
ifeq ($(OS),Windows_NT)
PLATFORM = Windows
else
PLATFORM = $(shell uname -s)
endif
#################################################
### Whether to opt-out from Docker-Sync
#################################################
ifeq ($(PLATFORM),Darwin)
ifdef NO_DOCKER_SYNC
PLATFORM = Linux
endif
endif
#################################################
### Whether to show Docker logs on stdout
#################################################
ifndef VERBOSE
DEMONIZED_COMPOSE = -d
endif
#################################################
### OS-aware docker-compose executable
#################################################
ifeq ($(PLATFORM),Windows)
COMPOSE_EXECUTABLE = docker-compose.exe
else
COMPOSE_EXECUTABLE = docker-compose
endif
#################################################
### Compose files location, depending on the OS
#################################################
MAIN_COMPOSE_PATH = docker/compose-files
PLATFORM_COMPOSE_FILES_ROOT = docker/compose-files/$(PLATFORM)
########################################################################################################################
### Defining Docker-Compose configuration files
########################################################################################################################
#################################################
### Pick main docker-compose file
#################################################
COMPOSE_FILES = -f $(MAIN_COMPOSE_PATH)/workspace.yml
ifeq ($(PLATFORM),Darwin)
COMPOSE_FILES += -f $(PLATFORM_COMPOSE_FILES_ROOT)/workspace-override.yml
endif
#################################################
### Add extra docker-compose files
#################################################
ifeq ($(PLATFORM),Windows)
COMPOSE_FILES += -f $(PLATFORM_COMPOSE_FILES_ROOT)/minio.yml
else
COMPOSE_FILES += -f $(MAIN_COMPOSE_PATH)/Linux/minio.yml
endif
#################################################
### Target web server docker-compose file
#################################################
ifeq (,$(findstring $(WEBSERVER),nginx apache))
$(error The WEBSERVER variable in the .env file is invalid. Accepted values are only apache or nginx, found $(WEBSERVER))
else ifeq ($(PLATFORM),Darwin)
COMPOSE_FILES += -f $(PLATFORM_COMPOSE_FILES_ROOT)/$(WEBSERVER).yml
else
COMPOSE_FILES += -f $(MAIN_COMPOSE_PATH)/Linux/$(WEBSERVER).yml
endif
#################################################
### Target DBMS docker-compose file
#################################################
ifeq (,$(findstring $(DBMS),postgresql mysql))
$(error The DBMS variable in the .env file is invalid. accepted values are only postgresql and mysql, found $(DBMS))
else ifeq ($(PLATFORM),Windows)
COMPOSE_FILES += -f $(PLATFORM_COMPOSE_FILES_ROOT)/$(DBMS).yml
else
COMPOSE_FILES += -f $(MAIN_COMPOSE_PATH)/Linux/$(DBMS).yml
endif
########################################################################################################################
### Makefile tasks
########################################################################################################################
build:
$(info Building application containers..)
@$(COMPOSE_EXECUTABLE) $(COMPOSE_FILES) build php $(WEBSERVER) $(DBMS) minio redis
sync-run:
@cd $(PLATFORM_COMPOSE_FILES_ROOT) && docker-sync start
sync-stop:
@cd $(PLATFORM_COMPOSE_FILES_ROOT) && docker-sync stop
compose-run:
@cd $(MAIN_COMPOSE_PATH)
@$(COMPOSE_EXECUTABLE) $(COMPOSE_FILES) up $(DEMONIZED_COMPOSE) php $(WEBSERVER) $(DBMS) minio redis
compose-stop:
@cd $(MAIN_COMPOSE_PATH) && $(COMPOSE_EXECUTABLE) -f workspace.yml down --remove-orphans
tty:
$(info Accessing main shell..)
@cd $(MAIN_COMPOSE_PATH)
@$(COMPOSE_EXECUTABLE) $(COMPOSE_FILES) exec php bash
webserver-tty:
$(info Accessing webserver shell..)
@cd $(MAIN_COMPOSE_PATH)
@$(COMPOSE_EXECUTABLE) $(COMPOSE_FILES) exec $(WEBSERVER) bash
containers-list:
$(info Here's the status of the running docker containers..)
@docker ps
run-Darwin:
@make -s sync-run
@make -s compose-run
run-Linux:
@make -s compose-run
run-Windows:
@make -s compose-run
run:
$(info Starting application..)
@make -s run-$(PLATFORM)
stop-Darwin:
@make -s sync-stop
@make -s compose-stop
stop-Linux:
@make -s compose-stop
stop-Windows:
@make -s compose-stop
stop:
$(info Stopping application containers..)
@make -s stop-$(PLATFORM)
fresh-Linux:
$(error Task not supported on $(PLATFORM))
fresh-Windows:
$(error Task not supported on $(PLATFORM))
fresh-Darwin:
@make -s stop
@cd $(PLATFORM_COMPOSE_FILES_ROOT) && docker-sync-stack clean
fresh:
$(info Purging Docker volumes..)
@make -s fresh-$(PLATFORM)