File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,17 @@ loadgen/loadgen: loadgen/*.go
2323
2424db/.uptodate : db/db db/Dockerfile
2525 docker build -t $(DOCKER_IMAGE_BASE ) /tns-db db/
26+ docker tag $(DOCKER_IMAGE_BASE ) /tns-db $(DOCKER_IMAGE_BASE ) /tns-db:$(IMAGE_TAG )
2627 touch $@
2728
2829app/.uptodate : app/app app/Dockerfile app/index.html.tmpl
2930 docker build -t $(DOCKER_IMAGE_BASE ) /tns-app app/
31+ docker tag $(DOCKER_IMAGE_BASE ) /tns-app $(DOCKER_IMAGE_BASE ) /tns-app:$(IMAGE_TAG )
3032 touch $@
3133
3234loadgen/.uptodate : loadgen/loadgen loadgen/Dockerfile
3335 docker build -t $(DOCKER_IMAGE_BASE ) /tns-loadgen loadgen/
36+ docker tag $(DOCKER_IMAGE_BASE ) /tns-loadgen $(DOCKER_IMAGE_BASE ) /tns-loadgen:$(IMAGE_TAG )
3437 touch $@
3538
3639lint-image/.uptodate : lint-image/Dockerfile
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: "2"
22services :
33
44 db :
5- image : grafana/tns-db
5+ image : grafana/tns-db:9c1ab38
66 command :
77 - ' -log.level=debug'
88 ports :
@@ -14,7 +14,7 @@ services:
1414 JAEGER_SAMPLER_PARAM : 1
1515
1616 app :
17- image : grafana/tns-app
17+ image : grafana/tns-app:9c1ab38
1818 command :
1919 - ' -log.level=debug'
2020 - ' http://db'
@@ -29,7 +29,7 @@ services:
2929 JAEGER_SAMPLER_PARAM : 1
3030
3131 loadgen :
32- image : grafana/tns-loadgen
32+ image : grafana/tns-loadgen:9c1ab38
3333 command :
3434 - ' -log.level=debug'
3535 - ' http://app'
You can’t perform that action at this time.
0 commit comments