mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
31 lines
968 B
Bash
31 lines
968 B
Bash
if [[ "$MINIMIZE_DOWNTIME" ]]; then
|
|
echo "${_group}Waiting for Sentry to start ..."
|
|
|
|
# Start the whole setup, except nginx and relay.
|
|
$dc up -d --remove-orphans $($dc config --services | grep -v -E '^(nginx|relay)$')
|
|
$dc restart relay
|
|
$dc exec -T nginx nginx -s reload
|
|
|
|
docker run --rm --network="${COMPOSE_PROJECT_NAME}_default" alpine ash \
|
|
-c 'while [[ "$(wget -T 1 -q -O- http://web:9000/_health/)" != "ok" ]]; do sleep 0.5; done'
|
|
|
|
# Make sure everything is up. This should only touch relay and nginx
|
|
$dc up -d
|
|
|
|
echo "${_endgroup}"
|
|
else
|
|
echo ""
|
|
echo "-----------------------------------------------------------------"
|
|
echo ""
|
|
echo "You're all done! Run the following command to get Sentry running:"
|
|
echo ""
|
|
if [[ "${_ENV}" =~ ".env.custom" ]]; then
|
|
echo " $dc_base --env-file ${_ENV} up -d"
|
|
else
|
|
echo " $dc_base up -d"
|
|
fi
|
|
echo ""
|
|
echo "-----------------------------------------------------------------"
|
|
echo ""
|
|
fi
|