-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.sh
executable file
·137 lines (120 loc) · 3.15 KB
/
run.sh
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/bin/sh
export COMPOSE_FILE_PATH="${PWD}/target/classes/docker/docker-compose.yml"
if [ -z "${M2_HOME}" ]; then
export MVN_EXEC="mvn"
else
export MVN_EXEC="${M2_HOME}/bin/mvn"
fi
start() {
docker volume create alfresco-share-chart-example-acs-volume
docker volume create alfresco-share-chart-example-db-volume
docker volume create alfresco-share-chart-example-ass-volume
docker-compose -f "$COMPOSE_FILE_PATH" up --build -d
}
start_share() {
docker-compose -f "$COMPOSE_FILE_PATH" up --build -d alfresco-share-chart-example-share
}
start_acs() {
docker-compose -f "$COMPOSE_FILE_PATH" up --build -d alfresco-share-chart-example-acs
}
start_api() {
docker-compose -f "$COMPOSE_FILE_PATH" up --build -d alfresco-chart-example-api
}
down() {
if [ -f "$COMPOSE_FILE_PATH" ]; then
docker-compose -f "$COMPOSE_FILE_PATH" down
fi
}
purge() {
docker volume rm -f alfresco-share-chart-example-acs-volume
docker volume rm -f alfresco-share-chart-example-db-volume
docker volume rm -f alfresco-share-chart-example-ass-volume
}
build() {
$MVN_EXEC clean package
}
build_share() {
docker-compose -f "$COMPOSE_FILE_PATH" kill alfresco-share-chart-example-share
yes | docker-compose -f "$COMPOSE_FILE_PATH" rm -f alfresco-share-chart-example-share
$MVN_EXEC clean package -pl alfresco-share-chart-example-share,alfresco-share-chart-example-share-docker
}
build_acs() {
docker-compose -f "$COMPOSE_FILE_PATH" kill alfresco-share-chart-example-acs
yes | docker-compose -f "$COMPOSE_FILE_PATH" rm -f alfresco-share-chart-example-acs
$MVN_EXEC clean package -pl alfresco-share-chart-example-integration-tests,alfresco-share-chart-example-platform,alfresco-share-chart-example-platform-docker
}
build_api() {
docker-compose -f "$COMPOSE_FILE_PATH" kill alfresco-chart-example-api
yes | docker-compose -f "$COMPOSE_FILE_PATH" rm -f alfresco-chart-example-api
$MVN_EXEC clean package -pl alfresco-chart-example-api,alfresco-chart-example-api-docker
}
tail() {
docker-compose -f "$COMPOSE_FILE_PATH" logs -f
}
tail_all() {
docker-compose -f "$COMPOSE_FILE_PATH" logs --tail="all"
}
prepare_test() {
$MVN_EXEC verify -DskipTests=true -pl alfresco-share-chart-example-platform,alfresco-share-chart-example-integration-tests,alfresco-share-chart-example-platform-docker
}
test() {
$MVN_EXEC verify -pl alfresco-share-chart-example-platform,alfresco-share-chart-example-integration-tests
}
case "$1" in
build_start)
down
build
start
tail
;;
build_start_it_supported)
down
build
prepare_test
start
tail
;;
start)
start
tail
;;
stop)
down
;;
purge)
down
purge
;;
tail)
tail
;;
reload_share)
build_share
start_share
tail
;;
reload_acs)
build_acs
start_acs
tail
;;
reload_api)
build_api
start_api
tail
;;
build_test)
down
build
prepare_test
start
test
tail_all
down
;;
test)
test
;;
*)
echo "Usage: $0 {build_start|build_start_it_supported|start|stop|purge|tail|reload_share|reload_acs|reload_api|build_test|test}"
esac