mirror of
https://github.com/getsentry/self-hosted.git
synced 2026-02-01 16:32:44 +00:00
* Reference paths relative to the current script or project root Before this PR: - some scripts change the current working directory and use relative paths - different approaches are taken to know which directory a script is running in - paths are sometimes relative, sometimes absolute, sometimes traversing directories After this PR: - scripts do neither change nor care much about the current working directory - a unified approach determines the directory of the current script - paths are always relative to the project root This should resolve an issue I already tried to fix with https://github.com/getsentry/self-hosted/pull/1798, where the contents of `./sentry` were not copied into the built container image, thus `enhance-image.sh` did not apply. Co-authored-by: Amin Vakil <info@aminvakil.com>
15 lines
446 B
Bash
15 lines
446 B
Bash
echo "${_group}Building and tagging Docker images ..."
|
|
|
|
echo ""
|
|
# Build any service that provides the image sentry-self-hosted-local first,
|
|
# as it is used as the base image for sentry-cleanup-self-hosted-local.
|
|
$dcb --force-rm web
|
|
# Build each other service individually to localize potential failures better.
|
|
for service in $($dc config --services); do
|
|
$dcb --force-rm "$service"
|
|
done
|
|
echo ""
|
|
echo "Docker images built."
|
|
|
|
echo "${_endgroup}"
|