From b151d302565bdf6e6f06adbd85c648bb4117fdc3 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 16 Jan 2023 10:50:55 +0100 Subject: [PATCH] [v9.2.x] update docs docker image reference (#61501) update docs docker image reference (#61269) * update docs docker image * remove command (cherry picked from commit 98cadb3aa0d315e40599715d1687603943542347) Co-authored-by: Robby Milo --- docs/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index db800ce9240..4f553a5e878 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,6 +1,6 @@ .PHONY: pull docs docs-quick docs-no-pull docs-test docs-local-static -IMAGE = grafana/grafana-docs-dev:latest +IMAGE = grafana/docs-base:latest CONTENT_PATH = /hugo/content/docs/grafana/next LOCAL_STATIC_PATH = ../../website/static PORT = 3002:3002 @@ -10,10 +10,7 @@ pull: docs: pull docker run -v $(shell pwd)/sources:$(CONTENT_PATH):Z -p $(PORT) --rm -it $(IMAGE) /bin/bash -c "make server" - -docs-quick: pull - docker run -v $(shell pwd)/sources:$(CONTENT_PATH):Z -p $(PORT) --rm -it $(IMAGE) /bin/bash -c "make server-quick" - + docs-no-pull: docker run -v $(shell pwd)/sources:$(CONTENT_PATH):Z -p $(PORT) --rm -it $(IMAGE) /bin/bash -c "make server"