2023-12-22 17:55:26 +08:00
|
|
|
FROM quay.io/prometheus/prometheus:v2.48.1
|
|
|
|
|
|
2023-12-22 18:05:03 +08:00
|
|
|
COPY zoneinfo-Shanghai /etc/localtime
|
2023-12-22 17:55:26 +08:00
|
|
|
|
|
|
|
|
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" ]
|