-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (24 loc) · 757 Bytes
/
Makefile
File metadata and controls
32 lines (24 loc) · 757 Bytes
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
include .env
up:
@docker-compose -f docker-compose.tunnel.yml up -d
@docker-compose -f $(MERRY_DIR)/docker-compose.yml up -d
@docker-compose -f $(ALOP_SCRAPER_DIR)/docker-compose.yml up -d
down:
@docker-compose -f docker-compose.tunnel.yml down
@docker-compose -f $(MERRY_DIR)/docker-compose.yml down
@docker-compose -f $(ALOP_SCRAPER_DIR)/docker-compose.yml down
restart:
@make up
@make down
rebuild:
@make down
@docker-compose -f $(MERRY_DIR)/docker-compose.yml build
@docker-compose -f $(ALOP_SCRAPER_DIR)/docker-compose.yml build
@make up
update:
@cd $(MERRY_DIR) && git pull
@cd $(ALOP_SCRAPER_DIR) && git pull
fire-up:
@git clone $(MERRY_REPO_URL) $(MERRY_DIR)
@git clone $(ALOP_SCRAPER_REPO_URL) $(ALOP_SCRAPER_DIR)
@make up