-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
69 lines (51 loc) · 1.62 KB
/
Copy pathMakefile
File metadata and controls
69 lines (51 loc) · 1.62 KB
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
help:
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@echo " up Bring up containers to run"
@echo " down Shut down containers created from the docker-compose file"
@echo " run Shut down then bring up containers"
@echo " master-ui Open Spark master UI"
@echo " worker-ui Open Spark worker UI"
@echo " history-ui Open Spark history UI"
@echo " notebook-ui Open Spark Notebook UI"
@echo " minio-ui Open Minio UI"
@echo " dagster-ui Open Dagster UI"
@echo " metabase-ui Open Metabase UI"
####################################################################################################################
up:
docker compose up -d --build
down:
docker compose down
run: down up
####################################################################################################################
# Monitoring
master-ui:
explorer.exe http://localhost:8061
worker-ui:
explorer.exe http://localhost:8062
history-ui:
explorer.exe http://localhost:18080
notebook-ui:
explorer.exe http://localhost:8888
minio-ui:
explorer.exe http://localhost:9001
dagster-ui:
explorer.exe http://localhost:3070
metabase-ui:
explorer.exe http://localhost:3030
# If you are using Linux, you may use this command instead
master-ui-linux:
open http://localhost:8061
worker-ui-linux:
open http://localhost:8062
history-ui-linux:
open http://localhost:18080
notebook-ui-linux:
open http://localhost:8888
minio-ui-linux:
open http://localhost:9001
dagster-ui-linux:
open http://localhost:3070
metabase-ui-linux:
open http://localhost:3030