You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
#!/bin/bash -e
|
|
|
|
DISTRIB="$1"
|
|
TDE_VERSION="$2"
|
|
ARCH="$3"
|
|
|
|
[ -z "${TDE_VERSION}" ] && TDE_VERSION="14.0.13"
|
|
[ -z "${ARCH}" ] && ARCH="x86_64"
|
|
[ -x /usr/bin/podman ] && DOCKER=podman || DOCKER=docker
|
|
|
|
IMAGE="trinity.${DISTRIB}.${ARCH}:${TDE_VERSION}"
|
|
FILE="${HOME}/tde/docker/${IMAGE}.tar.gz"
|
|
|
|
if [ $(${DOCKER} images -q "${IMAGE}") ]; then
|
|
echo "Docker image '${IMAGE}' already exists."
|
|
elif [ -r "${FILE}" ]; then
|
|
echo "Importing existing image '${FILE}'."
|
|
zcat "${FILE}" | ${DOCKER} image load
|
|
else
|
|
echo "Building new Docker image '${IMAGE}'."
|
|
${DOCKER} build -t "${IMAGE}" -f "${DISTRIB}/Dockerfile.${ARCH}" --build-arg TDE_VERSION="${TDE_VERSION}" --build-arg ARCH="${ARCH}" "${DISTRIB}"
|
|
echo "Saving image to '${FILE}'"
|
|
${DOCKER} image save "${IMAGE}" | pigz >"${FILE}"
|
|
fi
|
|
|
|
# Strip 'localhost/' prefix from image tag
|
|
if ! docker images | while read name tag blah; do echo "${name}:${tag}"; done | grep -q "^${IMAGE}$"; then
|
|
docker image tag "localhost/${IMAGE}" "${IMAGE}"
|
|
#docker image rm "localhost/${IMAGE}"
|
|
fi
|