Running Prometheus on Home Assistant

Yes, I just did! A moment ago I was reading Tutorial: add Homebridge to Hass.io using Portainer where I see volume is defined as “/mnt/data/supervisor/homeassistant/homebridge” which reminded me @koying’s response that I tried again and it worked :slight_smile:

Below you may see the docker-compose. Clearly I was doing something wrong.
Not sure what it was but finally I understood how volume path is treated.

services:
  prometheus:
    image: prom/prometheus:v2.36.2
    container_name: prometheus
    user: root
    volumes:
      - /mnt/data/supervisor/homeassistant/prometheus/etc:/etc/prometheus
      - /mnt/data/supervisor/homeassistant/prometheus/data:/prometheus
    command:
      - '--config.file=/etc/prometheus/prometheus.yml'
      - '--storage.tsdb.path=/prometheus'
      - '--web.console.libraries=/etc/prometheus/console_libraries'
      - '--web.console.templates=/etc/prometheus/consoles'
      - '--storage.tsdb.retention.time=200h'
      - '--web.enable-lifecycle'
    restart: unless-stopped
    expose:
      - 9090
    ports:
      - 9090:9090
    labels:
      org.label-schema.group: "monitoring"
1 Like