-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (28 loc) · 1.01 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
init:
./get_projects && docker compose -f local.yml --profile init up -d
all:
docker compose -f local.yml -f kafka.yml -f ugc-etl.local.yml --profile all up -d
up:
docker compose -f local.yml --profile all up -d
admin:
docker compose -f local.yml --profile admin up -d
api:
docker compose -f local.yml --profile api up -d
auth:
docker compose -f local.yml --profile auth up -d
etl:
docker compose -f local.yml --profile etl up -d
notification:
docker compose -f local.yml --profile notification up -d
ugc:
docker compose -f local.yml -f kafka.yml -f etl.local.yml --profile ugc-api --profile ugc-etl up -d
ugc-api:
docker compose -f local.yml --profile ugc-api up -d
ugc-etl:
docker compose -f local.yml -f kafka.yml -f etl.local.yml --profile ugc-etl up -d
ugc-api:
docker compose -f local.yml --profile ugc-api --profile nginx --profile logging up -d
billing:
docker compose -f local.yml --profile billing up -d --build
down:
docker-compose -f local.yml -f ugc-etl.local.yml -f kafka.yml --profile all down