-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·58 lines (50 loc) · 1.91 KB
/
build.sh
File metadata and controls
executable file
·58 lines (50 loc) · 1.91 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
cd ./authentication
./gradlew clean build
docker build --tag cualestunombre/operation:authentication -f Dockerfile .
docker build --tag cualestunombre/dev:authentication -f Dockerfile.dev .
docker push cualestunombre/operation:authentication
docker push cualestunombre/dev:authentication
cd ..
cd ./community
./gradlew clean build
docker build --tag cualestunombre/operation:community -f Dockerfile .
docker build --tag cualestunombre/dev:community -f Dockerfile.dev .
docker push cualestunombre/operation:community
docker push cualestunombre/dev:community
cd ..
cd ./nginx
docker build --tag cualestunombre/operation:nginx -f Dockerfile .
docker build --tag cualestunombre/dev:nginx -f Dockerfile.dev .
docker push cualestunombre/operation:nginx
docker push cualestunombre/dev:nginx
cd ..
cd ./mysql
docker build --tag cualestunombre/operation:mysql -f Dockerfile .
docker build --tag cualestunombre/dev:mysql -f Dockerfile.dev .
docker push cualestunombre/operation:mysql
docker push cualestunombre/dev:mysql
cd ..
cd ./redis
docker build --tag cualestunombre/operation:redis -f Dockerfile .
docker build --tag cualestunombre/dev:redis -f Dockerfile.dev .
docker push cualestunombre/operation:redis
docker push cualestunombre/dev:redis
cd ..
cd ./socket
docker build --tag cualestunombre/operation:socket -f Dockerfile .
docker build --tag cualestunombre/dev:socket -f Dockerfile.dev .
docker push cualestunombre/operation:socket
docker push cualestunombre/dev:socket
cd ..
cd ./mongodb
docker build --tag cualestunombre/operation:mongodb -f Dockerfile .
docker build --tag cualestunombre/dev:mongodb -f Dockerfile.dev .
docker push cualestunombre/operation:mongodb
docker push cualestunombre/dev:mongodb
cd ..
cd ./rabbit
docker build --tag cualestunombre/operation:rabbit -f Dockerfile .
docker build --tag cualestunombre/dev:rabbit -f Dockerfile.dev .
docker push cualestunombre/operation:rabbit
docker push cualestunombre/dev:rabbit
cd ..