For the complete documentation index, see llms.txt. This page is also available as Markdown.

Docker部署

使用容器化部署

准备环境

docker compose安装脚本

prometheus.yml
version: "3"
services:
  prometheus:
    image: bitnami/prometheus:latest
    container_name: prometheus
    ports:
      - 9100:9100
      - 9090:9090
    volumes:
      - /data/prometheus/data:/opt/bitnami/prometheus/data
      - /data/prometheus/prometheus.yml:/opt/bitnami/prometheus/conf/prometheus.yml
      - /data/prometheus/conf.d:/opt/bitnami/prometheus/conf/conf.d

注:

Last updated