-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (33 loc) · 882 Bytes
/
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
.PHONY: clean docs help
.DEFAULT_GOAL := help
ENV := mqtt
define PRINT_HELP_PYSCRIPT
import re, sys
for line in sys.stdin:
match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)
if match:
target, help = match.groups()
print("%-20s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
IMAGE_NAME := unprtd
CONTAINER_NAME := rytd
help:
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
build: ## Construir el contenedor
docker-compose build
run: ## Ejecutar el contenedor
docker-compose start
stop: ## Detener el contenedor
docker-compose stop
re: ## Recrear el contenedor y relanzarlo
docker-compose down
$(MAKE) up
shell_http:
docker-compose exec -ti -e TERM=xterm http bash
shell_mail:
docker-compose exec -ti -e TERM=xterm mail bash
deploy:
eval $$(docker-machine env $(ENV)) && \
$(MAKE) up