
This also merges the output blocks together because there's no compelling reason to have a separate output block for each input.
11 lines
198 B
Makefile
11 lines
198 B
Makefile
.PHONY: build push
|
|
|
|
IMAGE = fluentd-elasticsearch
|
|
TAG = 1.6
|
|
|
|
build:
|
|
docker build -t gcr.io/google_containers/$(IMAGE):$(TAG) .
|
|
|
|
push:
|
|
gcloud docker push gcr.io/google_containers/$(IMAGE):$(TAG)
|