clickhouse-sink-connector/docker/build_strimzi_docker.sh
2022-05-06 14:07:20 +03:00

25 lines
630 B
Bash

#!/bin/bash
# Production docker image builder
set -e
# Source configuration
CUR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
SRC_ROOT="$(realpath "${CUR_DIR}/..")"
# Externally configurable build-dependent options
TAG="${TAG:-latest}"
DOCKER_IMAGE="local/altinity/clickhouse-kafka-sink-connector-strimzi:${TAG}"
# Externally configurable build-dependent options
DOCKERFILE_DIR="${SRC_ROOT}/docker"
DOCKERFILE="${DOCKERFILE_DIR}/Dockerfile_strimzi"
DOCKER_CMD="docker build -t ${DOCKER_IMAGE} -f ${DOCKERFILE} ${SRC_ROOT}"
if ${DOCKER_CMD}; then
echo "ALL DONE"
else
echo "FAILED"
exit 1
fi