-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (24 loc) · 662 Bytes
/
Makefile
File metadata and controls
36 lines (24 loc) · 662 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
32
33
34
35
36
run: run-nginx run-client run-ticket run-payment
create-network:
docker network create simtix
run-client:
cd simtix-client && docker-compose up -d --build
run-ticket:
cd simtix-ticketing && docker-compose up -d --build
run-payment:
cd simtix-payment && docker-compose up -d --build
run-nginx:
docker compose up -d --build
stop-all: stop-client stop-ticket stop-payment stop-nginx
remove-network:
docker network remove simtix
stop-client:
cd simtix-client && docker-compose down
stop-ticket:
cd simtix-ticketing && docker-compose down
stop-payment:
cd simtix-payment && docker-compose down
stop-nginx:
docker-compose down
seed:
py seeder.py