From 44b5843518c9cf1a3b6b58105af41d49db605c2b Mon Sep 17 00:00:00 2001 From: Johannes 'fish' Ziemke Date: Wed, 28 Jan 2015 19:52:32 +0100 Subject: [PATCH] Set console paths correctly --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f06d7467a0..add51242b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,4 +24,6 @@ EXPOSE 9090 VOLUME [ "/prometheus" ] WORKDIR /prometheus ENTRYPOINT [ "/go/src/github.com/prometheus/prometheus/prometheus" ] -CMD [ "-logtostderr", "-config.file=/prometheus.conf" ] +CMD [ "-logtostderr", "-config.file=/prometheus.conf", \ + "-web.console.libraries=/go/src/github.com/prometheus/prometheus/console_libraries", \ + "-web.console.templates=/go/src/github.com/prometheus/prometheus/consoles" ]