-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildall.sh
executable file
·73 lines (55 loc) · 1.82 KB
/
buildall.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
#!/bin/bash
set -e
REPOSITORY=loftux
VERSION=0.0.1
# cd loftux_javabase
# docker build --compress -t $REPOSITORY/javabase:$VERSION -t $REPOSITORY/javabase:latest .
# cd ..
echo
echo "*********** Building lx_debian_tomcatbase ***********"
echo
cd lx_debian_tomcatbase
docker build --compress -t $REPOSITORY/lx_tomcatbase:$VERSION -t $REPOSITORY/lx_tomcatbase:latest .
cd ..
echo
echo "*********** Building lx_debian_alfbase ***********"
echo
cd lx_debian_alfbase
docker build --compress -t $REPOSITORY/lx_alfbase:$VERSION -t $REPOSITORY/lx_alfbase:latest .
cd ..
echo
echo "*********** Building lx_corp_alfresco ***********"
echo
cd lx_corp_alfresco
docker build --compress -t $REPOSITORY/lx_corpalf:$VERSION -t $REPOSITORY/lx_corpalf:latest .
cd ..
echo
echo "*********** Building lx_corp_share ***********"
echo
cd lx_corp_share
docker build --compress -t $REPOSITORY/lx_corpshare:$VERSION -t $REPOSITORY/lx_corpshare:latest .
cd ..
echo
echo "*********** Building lx_mariadb ***********"
echo
cd lx_mariadb
docker build --compress -t $REPOSITORY/lx_mariadb:$VERSION -t $REPOSITORY/lx_mariadb_source:10.3 -t $REPOSITORY/lx_mariadb:latest .
cd ..
echo
echo "*********** Building lx_alfresco_search ***********"
echo
cd lx_alfresco_search
docker build --compress -t $REPOSITORY/lx_alfresco_search_source:1.1.1 -t $REPOSITORY/lx_alfresco_search:$VERSION -t $REPOSITORY/lx_alfresco_search:latest .
cd ..
echo
echo "*********** Building lx_nginx ***********"
echo
cd lx_nginx
docker build --compress -t $REPOSITORY/lx_alfresco_nginx_source:1.15 -t $REPOSITORY/lx_alfresco_nginx:$VERSION -t $REPOSITORY/lx_alfresco_nginx:latest .
cd ..
#cd corp_sharebox
#docker build --compress -t $REPOSITORY/corpsharebox:$VERSION -t $REPOSITORY/corpsharebox:latest .
#cd ..
echo
echo "*********** Build Complete *************************************"
echo