mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 09:16:24 +02:00
11 lines
294 B
Docker
11 lines
294 B
Docker
|
|
FROM prom/prometheus:latest
|
|
|
|
# Set the command to run Prometheus with the specified configuration file
|
|
CMD ["--config.file=/etc/prometheus/prometheus.yaml"]
|
|
|
|
# Copy the Prometheus configuration files
|
|
COPY ./prometheus.yaml /etc/prometheus/prometheus.yaml
|
|
|
|
# Expose Prometheus port
|
|
EXPOSE 9090
|