Skip to content

Commit

Permalink
DBZ-8324 Stop publishing to Docker Hub
Browse files Browse the repository at this point in the history
  • Loading branch information
jpechane committed Oct 16, 2024
1 parent db66c97 commit 93d3435
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 33 deletions.
2 changes: 1 addition & 1 deletion README-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ that builds single platform images without buildx.
You can specify two environment variables that control where the images are pushed to after build:

* `DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME`: name of the first registry to use. This defaults to `quay.io/debezium`, so that the images are pushed to the Quay.io Registry.
* `DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME`: name to use for the second registry. By default it's set to `debezium`, and the images are pushed to Docker Hub.
* `DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME`: name to use for the second registry.

To run the build locally you can modify these variables.

Expand Down
4 changes: 0 additions & 4 deletions build-debezium-multiplatform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

#
# Parameter 1: image name
# Parameter 2: path to component (if different)
Expand Down
4 changes: 0 additions & 4 deletions build-debezium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

#
# Parameter 1: image name
# Parameter 2: path to component (if different)
Expand Down
4 changes: 0 additions & 4 deletions build-mongo-multiplatform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

echo ""
echo "****************************************************************"
echo "** Building ${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}/mongo-initiator:$1 for $PLATFORM"
Expand Down
4 changes: 0 additions & 4 deletions build-mongo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

echo ""
echo "****************************************************************"
echo "** Building ${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}/mongo-initiator:$1"
Expand Down
4 changes: 0 additions & 4 deletions build-postgres-multiplatform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

echo ""
echo "****************************************************************"
echo "** Building ${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}/postgres:$1 for $PLATFORM"
Expand Down
4 changes: 0 additions & 4 deletions build-postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

echo ""
echo "****************************************************************"
echo "** Building ${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}/postgres:$1"
Expand Down
4 changes: 0 additions & 4 deletions build-tool-images-multiplatform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

DEBEZIUM_TOOLS="tooling website-builder"

for TOOL in $DEBEZIUM_TOOLS; do
Expand Down
4 changes: 0 additions & 4 deletions build-tool-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ if [ -z "${DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME=quay.io/debezium
fi;

if [ -z "${DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME}" ]; then
DEBEZIUM_DOCKER_REGISTRY_SECONDARY_NAME=debezium
fi;

for TOOL in $DEBEZIUM_TOOLS; do
echo ""
echo "****************************************************************"
Expand Down

0 comments on commit 93d3435

Please sign in to comment.