#!/bin/bash DEBEZIUM_REPOSITORY=debezium/debezium DEBEZIUM_BRANCH=master SNAPSHOT_VERSION=$(curl -s https://raw.githubusercontent.com/$DEBEZIUM_REPOSITORY/$DEBEZIUM_BRANCH/pom.xml | grep -o '.*-SNAPSHOT' | awk -F '[<>]' '{print $3}') docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD docker build --build-arg DEBEZIUM_VERSION=$SNAPSHOT_VERSION -t debezium/connect:nightly connect/snapshot docker push debezium/connect:nightly