-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
entrypoint.sh
executable file
·158 lines (132 loc) · 4.16 KB
/
entrypoint.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
150
151
152
153
154
155
156
157
158
#!/usr/bin/env bash
set -e
_build_image() {
/docker-build.sh
}
# no compose file: original behavior
if [ -z "$INPUT_COMPOSE_FILE" ]; then
_build_image
exit
fi
# use image's yq now that it is available
_yq() {
yq "$@"
}
merged_compose=/tmp/merged-compose.yml
original_INPUT_IMAGE_TAG=$INPUT_IMAGE_TAG
original_INPUT_CONTEXT=$INPUT_CONTEXT
build_from_compose_file() {
echo -e "\nBuilding from Compose file(s)"
_merge_yamls
_gather_images
if (( ${#images[@]} == 0 )); then
echo "No images detected for registry (${INPUT_REGISTRY:-DockerHub})" >&2
return 1
fi
for image in "${images[@]}"; do
echo -e "\n[Compose file] Building image: $image"
_set_variables "$image"
_build_image
echo -e "[Compose file] $image - DONE\n"
done
}
_merge_yamls() (
local yamls=()
mapfile -d ">" -t yamls < <(echo -n "$INPUT_COMPOSE_FILE")
shopt -s extglob
yamls=( "${yamls[@]##*( )}") # trim leading spaces
yamls=( "${yamls[@]%%*( )}") # trim trailing spaces
# shellcheck disable=SC2016
_yq ea '. as $item ireduce ({}; . * $item )' "${yamls[@]}" > "$merged_compose"
echo -e "\nCompose file:"
cat "$merged_compose"
echo
)
_gather_images() {
local registry=$INPUT_REGISTRY
: "${registry:=$INPUT_USERNAME}" # an empty registry defaults to DockerHub, and a username is needed to detect its images
: "${registry:?Either registry or username (for DockerHub) is needed to build from a compose file}"
images=()
mapfile -t images < <(_yq e "
.services
| with_entries(select(.key | test(\"^${INPUT_SERVICES_REGEX:-.+}\$\")))
| .[].image
| select(. != null and test(\"^${registry}/\"))
" "$merged_compose"
)
}
_set_variables() {
local image_name
image_name="${1:?I need an image name}"
# if image already has a tag set in the compose file
if [[ $image_name =~ : ]];then
INPUT_IMAGE_TAG=${image_name##*:}
else
INPUT_IMAGE_TAG=${original_INPUT_IMAGE_TAG}
fi
local service_name
service_name=$(_get_service_name_by_image_name "$image_name")
INPUT_IMAGE_NAME=${image_name%:*}
if [ "$INPUT_REGISTRY" ]; then
INPUT_IMAGE_NAME=${INPUT_IMAGE_NAME#"$INPUT_REGISTRY"/}
fi
INPUT_CONTEXT=$(_get_context_by_service_name "$service_name")
INPUT_CONTEXT=$original_INPUT_CONTEXT/${INPUT_CONTEXT:-.}
INPUT_DOCKERFILE=$(_get_dockerfile_by_service_name "$service_name")
INPUT_DOCKERFILE=${INPUT_DOCKERFILE:-Dockerfile}
INPUT_BUILD_EXTRA_ARGS=$(_get_args_by_service_name "$service_name")
echo "Exporting variables:"
echo "INPUT_IMAGE_NAME=$INPUT_IMAGE_NAME"
echo "INPUT_IMAGE_TAG=$INPUT_IMAGE_TAG"
echo "INPUT_CONTEXT=$INPUT_CONTEXT"
echo "INPUT_DOCKERFILE=$INPUT_DOCKERFILE"
echo "INPUT_BUILD_EXTRA_ARGS=$INPUT_BUILD_EXTRA_ARGS"
export INPUT_IMAGE_NAME
export INPUT_IMAGE_TAG
export INPUT_CONTEXT
export INPUT_DOCKERFILE
export INPUT_BUILD_EXTRA_ARGS
}
_get_service_name_by_image_name() {
local image_name
image_name="${1:?I need an image_name}"
local service_name
service_name=$(_yq e ".services.[] | select(.image == \"${image_name}\") | path | .[1]" "$merged_compose")
if [ -z "$service_name" ]; then
echo "Failed to get service name" >&2
return 1
fi
echo "$service_name"
}
_get_context_by_service_name() {
local service_name
service_name="${1:?I need a service name}"
local context
context=$(_yq e ".services.${service_name}.build.context // \"\"" "$merged_compose" || true)
if [ -z "$context" ]; then
context=$(_yq e ".services.${service_name}.build // \"\"" "$merged_compose" || true)
fi
echo "$context"
}
_get_dockerfile_by_service_name() {
local service_name
service_name="${1:?I need a service name}"
_yq e ".services.${service_name}.build.dockerfile // \"\"" "$merged_compose" || true
}
_get_args_by_service_name() {
local service_name
service_name="${1:?I need a service name}"
local args_json
while IFS=": " read -r arg val; do
[ -z "$arg" ] && continue
args_json=$(
jq \
--arg key "--build-arg" \
--arg value "$arg=$val" \
'.[$key] += [$value]' <<< "${args_json:-"{}"}"
)
done < <(_yq e ".services.${service_name}.build.args // \"\"" "$merged_compose")
echo "$args_json"
}
_yq --version
build_from_compose_file