move images from gcr.io to quay.io

This commit is contained in:
Pat Christopher
2019-06-25 14:37:02 -07:00
parent e8738d665b
commit a1cda614dc
3 changed files with 14 additions and 11 deletions

View File

@@ -12,11 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
.PHONY: build
.PHONY: build push
PREFIX = gcr.io/fluentd-elasticsearch
PREFIX = quay.io/fluentd_elasticsearch
IMAGE = elasticsearch
TAG = v6.7.2
build:
gcloud builds submit --tag ${PREFIX}/${IMAGE}:${TAG}
docker build --tag ${PREFIX}/${IMAGE}:${TAG} .
push:
docker push ${PREFIX}/${IMAGE}:${TAG}