mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
458455245f
* Fix Dockerfile entrypoint Fix WORKDIR and use symlink to setup working defaults for config flags. Signed-off-by: Ben Kochie <superq@gmail.com> * Collapse Dockrefile RUNs Signed-off-by: Ben Kochie <superq@gmail.com>
20 lines
846 B
Docker
20 lines
846 B
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/ && \
|
|
mkdir -p /prometheus && \
|
|
chown -R nobody:nogroup etc/prometheus /prometheus && \
|
|
ln -s /prometheus /etc/prometheus/data
|
|
|
|
USER nobody
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
WORKDIR /etc/prometheus
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|