2
0

fix(gcb): We need to pull SENTRY_IMAGE on GCB

Follow up to #514.
This commit is contained in:
Burak Yigit Kaya 2020-05-25 10:18:18 +03:00
parent 3e7df7be17
commit 83160e8bdb
No known key found for this signature in database
GPG Key ID: C2F03C406631065D

View File

@ -157,7 +157,8 @@ $dc pull -q --ignore-pull-failures 2>&1 | grep -v -- -onpremise-local || true
if [ -z "$SENTRY_IMAGE" ]; then
docker pull getsentry/sentry:${SENTRY_VERSION:-latest}
else
echo "SENTRY_IMAGE is explicitly set, skipped pulling."
# We may not have the set image on the repo (local images) so allow fails
docker pull $SENTRY_IMAGE || true;
fi
echo ""