From 204f0647f3c58f2d96e8e608d2420445eb8fed10 Mon Sep 17 00:00:00 2001 From: sven Date: Tue, 23 Dec 2025 08:29:24 +0100 Subject: [PATCH] Initial --- prometheus/compose.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 prometheus/compose.yaml diff --git a/prometheus/compose.yaml b/prometheus/compose.yaml new file mode 100644 index 0000000..22c3e98 --- /dev/null +++ b/prometheus/compose.yaml @@ -0,0 +1,14 @@ +services: + prometheus: + ports: + - 9090:9090 + volumes: + - ./data/prometheus.yml:/etc/prometheus/prometheus.yml + - /prometheus/:/prometheus + image: prom/prometheus + restart: unless-stopped +volumes: + prometheus-data: + external: true + name: prometheus-data +networks: {}