File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
33
4+ source <( grep -v ' ^#' .env | sed -E ' s|^(.+)=(.*)$|: ${\1=\2}; export \1|g' )
5+
46dc=" docker-compose --no-ansi"
57dcr=" $dc run --rm"
68
@@ -108,7 +110,9 @@ echo ""
108110# shows a 404 error on the console which is confusing and unnecessary. To overcome this, we add the stderr>stdout
109111# redirection below and pass it through grep, ignoring all lines having this '-onpremise-local' suffix.
110112$dc pull -q --ignore-pull-failures 2>&1 | grep -v -- -onpremise-local || true
111- docker pull ${SENTRY_IMAGE:- getsentry/ sentry: latest}
113+
114+ # We may not have the set image on the repo (local images) so allow fails
115+ docker pull $SENTRY_IMAGE || true ;
112116
113117echo " "
114118echo " Building and tagging Docker images..."
You can’t perform that action at this time.
0 commit comments