mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-12 16:44:05 -08:00
2f93fa6292
* included default flags into Dockerfile entrypoint Signed-off-by: Junyu Wang <junyuw@berkeley.edu> * keeping style consistent Co-Authored-By: DrakeW <junyuw@berkeley.edu> Signed-off-by: Junyu Wang <junyuw@berkeley.edu> * move prometheus.yml config into entrypoint & point to console template/libraries in etc/prometheus Signed-off-by: Junyu Wang <junyuw@berkeley.edu>
23 lines
1 KiB
Docker
23 lines
1 KiB
Docker
FROM quay.io/prometheus/busybox:latest
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
COPY prometheus /bin/prometheus
|
|
COPY promtool /bin/promtool
|
|
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/
|
|
RUN mkdir -p /prometheus && \
|
|
chown -R nobody:nogroup etc/prometheus /prometheus
|
|
|
|
USER nobody
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
WORKDIR /prometheus
|
|
ENTRYPOINT [ "/bin/prometheus", \
|
|
"--storage.tsdb.path=/prometheus", \
|
|
"--web.console.libraries=/etc/prometheus/console_libraries", \
|
|
"--web.console.templates=/etc/prometheus/consoles", \
|
|
"--config.file=/etc/prometheus/prometheus.yml" ]
|