31 lines
1.6 KiB
Docker
31 lines
1.6 KiB
Docker
FROM docker.io/bitnami/minideb:buster
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV HOME="/" \
|
|
OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-10" \
|
|
OS_NAME="linux"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages ca-certificates curl gzip procps tar wget
|
|
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/prometheus-2.26.0-0-linux-amd64-debian-10.tar.gz && \
|
|
echo "9e132a44d36fd4c9e1c119562329550b2b8bcafb758c36123ae0e9fcb8551072 /tmp/bitnami/pkg/cache/prometheus-2.26.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
|
tar -zxf /tmp/bitnami/pkg/cache/prometheus-2.26.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
|
rm -rf /tmp/bitnami/pkg/cache/prometheus-2.26.0-0-linux-amd64-debian-10.tar.gz
|
|
RUN chmod g+rwX /opt/bitnami
|
|
RUN ln -sf /opt/bitnami/prometheus/conf /etc/prometheus
|
|
RUN ln -sf /opt/bitnami/prometheus/data /prometheus
|
|
|
|
RUN mkdir -p /opt/bitnami/prometheus/data/ && chmod g+rwX /opt/bitnami/prometheus/data/
|
|
ENV BITNAMI_APP_NAME="prometheus" \
|
|
BITNAMI_IMAGE_VERSION="2.26.0-debian-10-r21" \
|
|
PATH="/opt/bitnami/prometheus/bin:$PATH"
|
|
|
|
EXPOSE 9090
|
|
|
|
WORKDIR /opt/bitnami/prometheus
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/prometheus/bin/prometheus" ]
|
|
CMD [ "--config.file=/opt/bitnami/prometheus/conf/prometheus.yml", "--storage.tsdb.path=/opt/bitnami/prometheus/data", "--web.console.libraries=/opt/bitnami/prometheus/conf/console_libraries", "--web.console.templates=/opt/bitnami/prometheus/conf/consoles" ]
|