aboutsummaryrefslogtreecommitdiff
path: root/bake.sh
blob: 839cefd511e7ef15070976b7c5873ed5879113af (plain) (blame)
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
#!/usr/bin/env bash
# build, tag, and push docker images

# exit if a command fails
set -o errexit
# exit if required variables aren't set
set -o nounset

# check for docker
if command -v docker 2>&1 >/dev/null; then
	echo "using docker..." >&2
else
	echo "could not find docker, exiting" >&2
	exit 1
fi

# check for jq
if ! command -v jq 2>&1 >/dev/null; then
       echo "could not find jq, exiting" >&2
       exit 1
fi

# if no registry is provided, tag image as "local" registry
registry="${REGISTRY:-local}"
echo "using registry $registry..." >&2

# retrieve latest alpine version
alpine="${ALPINE:-$(curl -sSL https://www.alpinelinux.org/downloads/ | grep -P 'Current Alpine Version' | grep -o -P '\d+\.\d+\.\d+')}"
echo "using alpine version $alpine..." >&2

# retrieve latest debian version
debian="${DEBIAN:-11.5}"
echo "using alpine version $debian..." >&2

# retreive latest nginx stable version
nginx_stable="${NGINX_STABLE:-$(curl -sSL https://nginx.org/en/download.html | grep -P '(\/download\/nginx-\d+\.\d+\.\d+\.tar\.gz)' -o | uniq | head -n2 | tail -n1 | grep -o -P '\d+\.\d+\.\d+')}"
echo "using nginx stable version $nginx_stable..." >&2

# retrieve latest nginx mainline version
nginx_mainline="${NGINX_MAINLINE:-$(curl -sSL https://nginx.org/en/download.html | grep -P '(\/download\/nginx-\d+\.\d+\.\d+\.tar\.gz)' -o | uniq | head -n1 | grep -o -P '\d+\.\d+\.\d+')}"
echo "using nginx mainline version $nginx_mainline..." >&2

# retrieve latest pcre2 version
pcre="${PCRE:-$(curl -sSL https://api.github.com/repos/PCRE2Project/pcre2/releases/latest | jq -r '.tag_name')}"
echo "using pcre2 version $pcre..." >&2

# pass core count into container for build process
core_count="${CORE_COUNT:-$(nproc)}"
echo "using $core_count cores..." >&2

# create docker images
export ALPINE_VER="$alpine"
export DEBIAN_VER="$debian"
export CORE_COUNT="$core_count"
export REGISTRY="$registry"
export NGINX_MAINLINE="$nginx_mainline"
export NGINX_STABLE="$nginx_stable"
export PCRE2_VER="$pcre"
docker buildx bake \
    $(if [ "${REGISTRY}" != "local" ]; then echo "--push"; fi) \
    "$@"

echo "# docker-nginx" > README.md
echo -e "automatic builds of nginx with multiple architectures and rootless support\n" >> README.md
echo "## tags" >> README.md
target_info="$(docker buildx bake --print | jq '.target')"
targets="$(echo $target_info | jq -r '.|keys[]')"
for target in $targets; do
    tags="$(echo "$target_info" | jq -r '[."'"$target"'".tags|.[]|split(":")|.[1]|"`\(.)`"]|join(", ")')"
    echo "- **$target**: $tags" >> README.md
done
echo -e "\n## build options" >> README.md
echo "- **ALPINE**: "'`'"$ALPINE_VER"'`'"" >> README.md
echo "- **DEBIAN**: "'`'"$DEBIAN_VER"'`'"" >> README.md
echo "- **NGINX_MAINLINE**: "'`'"$NGINX_MAINLINE"'`'"" >> README.md
echo "- **NGINX_STABLE**: "'`'"$NGINX_STABLE"'`'"" >> README.md
echo "- **PCRE2**: "'`'"$PCRE2_VER"'`'"" >> README.md