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: {}