mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
e5b1b15dc3
* Moving up workdir will make mkdir call redundant * Consolidate into a single RUN instruction * Prefix etc/prometheus with a slash (it only worked because WORKDIR was / ) Signed-off-by: Manuel Rüger <manuel@rueg.eu>
29 lines
1.2 KiB
Docker
29 lines
1.2 KiB
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
COPY .build/${OS}-${ARCH}/prometheus /bin/prometheus
|
|
COPY .build/${OS}-${ARCH}/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/
|
|
COPY LICENSE /LICENSE
|
|
COPY NOTICE /NOTICE
|
|
COPY npm_licenses.tar.bz2 /npm_licenses.tar.bz2
|
|
|
|
WORKDIR /prometheus
|
|
RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/ && \
|
|
chown -R nobody:nobody /etc/prometheus /prometheus
|
|
|
|
USER nobody
|
|
EXPOSE 9090
|
|
VOLUME [ "/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" ]
|