Always --pull in docker build to ensure recent base images

This commit is contained in:
Jeff Grafton
2017-01-10 14:29:47 -08:00
parent add3a08a6d
commit 19aafd291c
52 changed files with 55 additions and 55 deletions

View File

@@ -19,7 +19,7 @@
TAG = v2.4.1
build: elasticsearch_logging_discovery
docker build -t gcr.io/google_containers/elasticsearch:$(TAG) .
docker build --pull -t gcr.io/google_containers/elasticsearch:$(TAG) .
push:
gcloud docker -- push gcr.io/google_containers/elasticsearch:$(TAG)

View File

@@ -19,7 +19,7 @@ IMAGE = fluentd-elasticsearch
TAG = 1.20
build:
docker build -t $(PREFIX)/$(IMAGE):$(TAG) .
docker build --pull -t $(PREFIX)/$(IMAGE):$(TAG) .
push:
gcloud docker --server=gcr.io -- push $(PREFIX)/$(IMAGE):$(TAG)

View File

@@ -18,7 +18,7 @@ TAG = v4.6.1
PREFIX = gcr.io/google_containers
build:
docker build -t $(PREFIX)/kibana:$(TAG) .
docker build --pull -t $(PREFIX)/kibana:$(TAG) .
push:
gcloud docker -- push $(PREFIX)/kibana:$(TAG)