mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
51 lines
1.2 KiB
Bash
Executable File
51 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
|
|
|
|
. /usr/sbin/so-common
|
|
. /usr/sbin/so-image-common
|
|
|
|
usage() {
|
|
read -r -d '' message <<- EOM
|
|
usage: so-image-pull [-h] IMAGE [IMAGE ...]
|
|
|
|
positional arguments:
|
|
IMAGE One or more 'so-' prefixed images to download and verify.
|
|
|
|
optional arguments:
|
|
-h, --help Show this help message and exit.
|
|
EOM
|
|
echo "$message"
|
|
exit 1
|
|
}
|
|
|
|
for arg; do
|
|
shift
|
|
[[ "$arg" = "--quiet" || "$arg" = "-q" ]] && quiet=true && continue
|
|
set -- "$@" "$arg"
|
|
done
|
|
|
|
if [[ $# -eq 0 || $# -gt 1 ]] || [[ $1 == '-h' || $1 == '--help' ]]; then
|
|
usage
|
|
fi
|
|
|
|
TRUSTED_CONTAINERS=("$@")
|
|
set_version
|
|
|
|
for image in "${TRUSTED_CONTAINERS[@]}"; do
|
|
if ! docker images | grep "$image" | grep ":5000" | grep -q "$VERSION"; then
|
|
if [[ $quiet == true ]]; then
|
|
update_docker_containers "$image" "" "" "/dev/null"
|
|
else
|
|
update_docker_containers "$image" "" "" ""
|
|
fi
|
|
else
|
|
echo "$image:$VERSION image exists."
|
|
fi
|
|
done
|