We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9602a64 commit 6baee25Copy full SHA for 6baee25
1 file changed
telegraf/_scripts/release.sh
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env bash
2
+#
3
+# Build and push Docker images to Docker Hub and quay.io.
4
5
+cd "$(dirname "$0")" || exit 1
6
+echo "Building docker image and pushing to quay.io!"
7
+DEIS_REGISTRY=quay.io/ BUILD_TAG=v2-beta make -C .. docker-build docker-push
8
+echo "Building docker image and pushing to docker hub!"
9
+BUILD_TAG=v2-beta make -C .. docker-build docker-push
0 commit comments