self-hosted/install/build-docker-images.sh
2022-05-25 12:54:29 -04:00

12 lines
315 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.
$dc build --force-rm web
$dc build --force-rm
echo ""
echo "Docker images built."
echo "${_endgroup}"