From 4e83f91cfddb472dfe528f60d5685311f7a988e7 Mon Sep 17 00:00:00 2001 From: Goutham Veeramachaneni Date: Mon, 21 Jan 2019 17:27:16 +0530 Subject: [PATCH] Rollback Dockerfile to version @ 2.5.x (#5122) Fixes https://github.com/prometheus/prometheus/issues/5043 Signed-off-by: Goutham Veeramachaneni --- Dockerfile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3ff6454e..00700591f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,16 @@ COPY documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml COPY console_libraries/ /usr/share/prometheus/console_libraries/ COPY consoles/ /usr/share/prometheus/consoles/ -RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/ && \ - mkdir -p /prometheus && \ - chown -R nobody:nogroup etc/prometheus /prometheus && \ - ln -s /prometheus /etc/prometheus/data +RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/ +RUN mkdir -p /prometheus && \ + chown -R nobody:nogroup etc/prometheus /prometheus USER nobody EXPOSE 9090 VOLUME [ "/prometheus" ] -WORKDIR /etc/prometheus +WORKDIR /prometheus ENTRYPOINT [ "/bin/prometheus" ] +CMD [ "--config.file=/etc/prometheus/prometheus.yml", \ + "--storage.tsdb.path=/prometheus", \ + "--web.console.libraries=/usr/share/prometheus/console_libraries", \ + "--web.console.templates=/usr/share/prometheus/consoles" ] -- GitLab