mirror of
https://github.com/prometheus/prometheus.git
synced 2025-12-18 21:26:32 -05:00
Some checks are pending
buf.build / lint and publish (push) Waiting to run
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Build Prometheus for common architectures (push) Waiting to run
CI / Build Prometheus for all architectures (push) Waiting to run
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
31 lines
1.4 KiB
Docker
31 lines
1.4 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>"
|
|
LABEL org.opencontainers.image.authors="The Prometheus Authors" \
|
|
org.opencontainers.image.vendor="Prometheus" \
|
|
org.opencontainers.image.title="Prometheus" \
|
|
org.opencontainers.image.description="The Prometheus monitoring system and time series database" \
|
|
org.opencontainers.image.source="https://github.com/prometheus/prometheus" \
|
|
org.opencontainers.image.url="https://github.com/prometheus/prometheus" \
|
|
org.opencontainers.image.documentation="https://prometheus.io/docs" \
|
|
org.opencontainers.image.licenses="Apache License 2.0"
|
|
|
|
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 LICENSE /LICENSE
|
|
COPY NOTICE /NOTICE
|
|
COPY npm_licenses.tar.bz2 /npm_licenses.tar.bz2
|
|
|
|
WORKDIR /prometheus
|
|
RUN chown -R nobody:nobody /etc/prometheus /prometheus && chmod g+w /prometheus
|
|
|
|
USER nobody
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
|
CMD [ "--config.file=/etc/prometheus/prometheus.yml", \
|
|
"--storage.tsdb.path=/prometheus" ]
|