mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
64 lines
2.2 KiB
Bash
Executable file
64 lines
2.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
run_build_stack_custom_image_with_feedback() {
|
|
local stack_name="${1}"
|
|
local stack_dir="${2}"
|
|
local build_image_status=0
|
|
|
|
show_warning_message "Starting docker build for stack: ${stack_name}"
|
|
if build_stack_custom_image "${stack_dir}"; then
|
|
show_warning_and_wait "Custom image build finished successfully for stack: ${stack_name}" 3
|
|
return 0
|
|
fi
|
|
|
|
build_image_status=$?
|
|
case "${build_image_status}" in
|
|
11)
|
|
show_warning_and_wait "Custom image build failed: missing metadata.json in ${stack_dir}." 4
|
|
;;
|
|
12)
|
|
show_warning_and_wait "Custom image build failed: stack env file not found in ${stack_dir}." 4
|
|
;;
|
|
13)
|
|
show_warning_and_wait "Custom image build failed: CUSTOM_IMAGE is missing in stack env file." 4
|
|
;;
|
|
14)
|
|
show_warning_and_wait "Custom image build failed: CUSTOM_TAG is missing in stack env file." 4
|
|
;;
|
|
15)
|
|
show_warning_and_wait "Custom image build failed: frappe_branch missing in metadata.json." 4
|
|
;;
|
|
16)
|
|
show_warning_and_wait "Custom image build failed: could not generate apps.json from metadata app selection." 4
|
|
;;
|
|
17)
|
|
show_warning_and_wait "Custom image build failed: apps.json not found after generation." 4
|
|
;;
|
|
18)
|
|
show_warning_and_wait "Custom image build failed: base64 command is not available in this environment." 4
|
|
;;
|
|
19)
|
|
show_warning_and_wait "Custom image build failed: apps.json could not be base64-encoded." 4
|
|
;;
|
|
20)
|
|
show_warning_and_wait "Custom image build failed: images/layered/Containerfile not found." 4
|
|
;;
|
|
21)
|
|
show_warning_and_wait "Custom image build failed: docker build returned an error. Check the output above." 4
|
|
;;
|
|
22)
|
|
show_warning_and_wait "Custom image build failed: git is required for app branch precheck (git ls-remote)." 4
|
|
;;
|
|
23)
|
|
show_warning_and_wait "Custom image build failed: could not parse app entries from apps.json." 4
|
|
;;
|
|
24)
|
|
show_warning_and_wait "Custom image build failed: app branch precheck failed -> ${EASY_DOCKER_BUILD_ERROR_DETAIL}" 6
|
|
;;
|
|
*)
|
|
show_warning_and_wait "Custom image build failed (${build_image_status})." 4
|
|
;;
|
|
esac
|
|
|
|
return "${build_image_status}"
|
|
}
|