mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
15 lines
424 B
Bash
15 lines
424 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 web
|
|
# Build each other service individually to localize potential failures better.
|
|
for service in $($dc config --services); do
|
|
$dcb "$service"
|
|
done
|
|
echo ""
|
|
echo "Docker images built."
|
|
|
|
echo "${_endgroup}"
|