mirror of
https://github.com/tryzealot/zealot-docker.git
synced 2026-02-24 09:13:16 +00:00
11 lines
244 B
Bash
Executable File
11 lines
244 B
Bash
Executable File
echo "${_group}Fetching and updating Docker images ..."
|
|
|
|
if [ "$SKIP_UPDATE" == "false" ]; then
|
|
$dc pull -q --ignore-pull-failures 2>&1 | grep -v -- -nightly || true
|
|
echo "Docker images pulled"
|
|
else
|
|
echo "Skipped"
|
|
fi
|
|
|
|
echo "${_endgroup}"
|