-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-images.sh
executable file
·42 lines (32 loc) · 1.05 KB
/
build-images.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
#!/usr/bin/env bash
#cd ./web-frontend/
#docker build -t web-frontend .
#docker tag web-frontend austinv11/discord4j:web-frontend
#docker push austinv11/discord4j:web-frontend
# Expecting the discord4j-web repo to be cloned in the parent dir!
cd ../discord4j-web
docker build -t web-frontend .
docker tag web-frontend austinv11/discord4j:web-frontend
docker push austinv11/discord4j:web-frontend
cd ../Dockerfiles
cd ./web-old/
docker build -t web-old .
docker tag web-old austinv11/discord4j:web-old
docker push austinv11/discord4j:web-old
cd ../nginx/
docker build -t nginx .
docker tag nginx austinv11/discord4j:nginx
docker push austinv11/discord4j:nginx
cd ../database/
docker build -t database .
docker tag database austinv11/discord4j:database
docker push austinv11/discord4j:database
cd ../flask-webhook/
docker build -t webhook .
docker tag webhook austinv11/discord4j:webhook
docker push austinv11/discord4j:webhook
cd ../internal-api/
docker build -t github .
docker tag github austinv11/discord4j:github
docker push austinv11/discord4j:github
cd ..