From e8341a09b270412016b5c3d8b78e92436ddf2e3a Mon Sep 17 00:00:00 2001 From: Leonard Gram Date: Mon, 4 May 2020 11:15:51 +0200 Subject: [PATCH] Docs: make sure we always use the latest docs image (#24217) --- docs/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Makefile b/docs/Makefile index 272e69fd437..84bd02b6089 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -3,7 +3,9 @@ IMAGE = grafana/docs-base:latest docs: + docker pull ${IMAGE} docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest -p 3002:3002 --rm -it $(IMAGE) /bin/bash -c 'make server' docs-test: + docker pull ${IMAGE} docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest --rm -it $(IMAGE) /bin/bash -c 'make prod'