forked from Monogramm/docker-dolibarr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.sh
executable file
·149 lines (120 loc) · 3.68 KB
/
update.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
138
139
140
141
142
143
144
145
146
147
148
149
#!/bin/bash
set -eo pipefail
declare -A cmd=(
[apache]='apache2-foreground'
[fpm]='php-fpm'
[fpm-alpine]='php-fpm'
)
declare -A conf=(
[apache]=''
[fpm]='nginx'
[fpm-alpine]='nginx'
)
declare -A compose=(
[apache]='apache'
[fpm]='fpm'
[fpm-alpine]='fpm'
)
declare -A base=(
[apache]='debian'
[fpm]='debian'
[fpm-alpine]='alpine'
)
variants=(
apache
fpm
fpm-alpine
)
archis=(
amd64
#arm32v5
#arm32v6
#arm32v7
#arm64v8
i386
#ppc64le
)
min_version='10.0'
dockerLatest='13.0'
# version_greater_or_equal A B returns whether A >= B
function version_greater_or_equal() {
[[ "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1" || "$1" == "$2" ]];
}
php_versions=( "7.3" )
dockerRepo="monogramm/docker-dolibarr"
latests=( $( curl -fsSL 'https://api.github.com/repos/dolibarr/dolibarr/tags' |tac|tac| \
grep -oE '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+' | \
sort -urV )
develop )
# Remove existing images
echo "reset docker images"
rm -rf ./images/*
echo "update docker images"
travisEnv=
for latest in "${latests[@]}"; do
version=$(echo "$latest" | cut -d. -f1-2)
# Only add versions >= "$min_version"
if version_greater_or_equal "$version" "$min_version"; then
for php_version in "${php_versions[@]}"; do
for variant in "${variants[@]}"; do
for archi in "${archis[@]}"; do
# Create the version+php_version+variant directory with a Dockerfile.
dir="images/$version/php$php_version-$variant-$archi"
if [ -d "$dir" ]; then
continue
fi
echo "generating $latest [$version] php$php_version-$variant-$archi"
mkdir -p "$dir"
# Copy the files
template="template/Dockerfile.${base[$variant]}.template"
cp "$template" "$dir/Dockerfile"
cp "template/entrypoint.sh" "$dir/entrypoint.sh"
cp -r "template/hooks" "$dir/"
cp -r "template/test" "$dir/"
cp "template/.env" "$dir/.env"
cp "template/.dockerignore" "$dir/.dockerignore"
cp "template/docker-compose.${compose[$variant]}.test.yml" "$dir/docker-compose.test.yml"
if [ -n "${conf[$variant]}" ] && [ -d "template/${conf[$variant]}" ]; then
cp -r "template/${conf[$variant]}" "$dir/${conf[$variant]}"
fi
# Replace the variables.
sed -ri -e '
s/%%PHP_VERSION%%/'"$php_version"'/g;
s/%%VARIANT%%/'"$variant"'/g;
s/%%ARCHI%%/'"$archi"'/g;
s/%%VERSION%%/'"$latest"'/g;
s/%%CMD%%/'"${cmd[$variant]}"'/g;
' "$dir/Dockerfile"
sed -ri -e '
s|DOCKER_TAG=.*|DOCKER_TAG='"$version"'|g;
s|DOCKER_REPO=.*|DOCKER_REPO='"$dockerRepo"'|g;
' "$dir/hooks/run"
# Create a list of "alias" tags for DockerHub post_push
if [ "$version" = "$dockerLatest" ]; then
if [ "$variant" = 'apache' ]; then
echo "$latest-$variant $version-$variant $variant $latest $version latest " > "$dir/.dockertags"
else
echo "$latest-$variant $version-$variant $variant " > "$dir/.dockertags"
fi
else
if [ "$variant" = 'apache' ]; then
echo "$latest-$variant $version-$variant $latest $version " > "$dir/.dockertags"
else
echo "$latest-$variant $version-$variant " > "$dir/.dockertags"
fi
fi
# Add Travis-CI env var
travisEnv='\n - VERSION='"$version"' PHP_VERSION='"$php_version"' VARIANT='"$variant"' ARCHI='"$archi$travisEnv"
if [[ $1 == 'build' ]]; then
tag="$version-$php_version-$variant"
echo "Build Dockerfile for ${tag}"
docker build -t "${dockerRepo}:${tag}" "$dir"
fi
done
done
done
fi
done
# update .travis.yml
travis="$(awk -v 'RS=\n\n' '$1 == "env:" && $2 == "#" && $3 == "Environments" { $0 = "env: # Environments'"$travisEnv"'" } { printf "%s%s", $0, RS }' .travis.yml)"
echo "$travis" > .travis.yml