-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildall.sh
executable file
·76 lines (58 loc) · 2.74 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
74
75
76
#!/bin/sh
set -e
docker pull alpine:latest
docker pull ubuntu:xenial
docker pull mysql:5.7
docker pull php:7.1-fpm
docker pull php:7.2-fpm
docker pull php:7.3-fpm
docker pull php:7.4-fpm
docker pull php:8.0-fpm
docker pull php:8.0-fpm-alpine
docker pull swaggerapi/swagger-codegen-cli-v3:3.0.20
docker pull bitnami/fluentd:1.12.3-debian-10-r4
docker build -t shoppinpal/git-ssh shoppinpal/git-ssh
docker build -t shoppinpal/mysql-tmpfs:5.7 shoppinpal/mysql-tmpfs/5.7
docker tag shoppinpal/mysql-tmpfs:5.7 shoppinpal/mysql-tmpfs:latest
docker build -t shoppinpal/php-fpm:7.3 shoppinpal/php-fpm/7.3
docker build -t shoppinpal/php-fpm-azure:7.3 shoppinpal/php-fpm-azure/7.3
docker build -t shoppinpal/php-fpm-dev:7.3 shoppinpal/php-fpm-dev/7.3
docker build -t shoppinpal/php-ci:7.3 shoppinpal/php-ci/7.3
docker build -t shoppinpal/php-fpm:7.4 shoppinpal/php-fpm/7.4
docker build -t shoppinpal/php-fpm-azure:7.4 shoppinpal/php-fpm-azure/7.4
docker build -t shoppinpal/php-fpm-dev:7.4 shoppinpal/php-fpm-dev/7.4
docker build -t shoppinpal/php-ci:7.4 shoppinpal/php-ci/7.4
docker build -t shoppinpal/php-fpm:8.0 shoppinpal/php-fpm/8.0
docker build -t shoppinpal/php-fpm-azure:8.0 shoppinpal/php-fpm-azure/8.0
docker build -t shoppinpal/php-fpm-dev:8.0 shoppinpal/php-fpm-dev/8.0
docker build -t shoppinpal/php-ci:8.0 shoppinpal/php-ci/8.0
docker build -t shoppinpal/php-fpm:8.0-alpine shoppinpal/php-fpm/8.0-alpine
docker build -t shoppinpal/php-fpm-dev:8.0-alpine shoppinpal/php-fpm-dev/8.0-alpine
docker build -t shoppinpal/php-ci:8.0-alpine shoppinpal/php-ci/8.0-alpine
docker build -t shoppinpal/nginx-php-ci shoppinpal/nginx-php-ci
docker build -t shoppinpal/swagger-codegen shoppinpal/swagger-codegen
docker build -t shoppinpal/fluentd:1.12.3-debian-10-r4 shoppinpal/fluentd/1.12.3-debian-10-r4
docker tag shoppinpal/fluentd:1.12.3-debian-10-r4 shoppinpal/fluentd:latest
docker build -t shoppinpal/kubectl-kustomize shoppinpal/kubectl-kustomize
docker push shoppinpal/mysql-tmpfs
docker push shoppinpal/php-fpm:7.3
docker push shoppinpal/php-fpm:7.4
docker push shoppinpal/php-fpm:8.0
docker push shoppinpal/php-fpm:8.0-alpine
docker push shoppinpal/php-fpm-azure:7.3
docker push shoppinpal/php-fpm-azure:7.4
docker push shoppinpal/php-fpm-azure:8.0
docker push shoppinpal/php-fpm-dev:7.3
docker push shoppinpal/php-fpm-dev:7.4
docker push shoppinpal/php-fpm-dev:8.0
docker push shoppinpal/php-fpm-dev:8.0-alpine
docker push shoppinpal/php-ci:7.3
docker push shoppinpal/php-ci:7.4
docker push shoppinpal/php-ci:8.0
docker push shoppinpal/php-ci:8.0-alpine
docker push shoppinpal/git-ssh
docker push shoppinpal/nginx-php-ci
docker push shoppinpal/swagger-codegen
docker push shoppinpal/fluentd:latest
docker push shoppinpal/fluentd:1.12.3-debian-10-r4
docker push shoppinpal/kubectl-kustomize