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