Sentry/install/build-docker-images.sh

15 lines
446 B
Bash
Raw Normal View History

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}"