Horje
prometheus alertmanager docker example Code Example
prometheus alertmanager docker example
version: '2'

services:

    prometheus:
        image: prom/prometheus
        privileged: true
        volumes:
            - ./prometheus.yml:/etc/prometheus/prometheus.yml
            - ./alertmanger/alert.rules:/alert.rules
        command:
            - '--config.file=/etc/prometheus/prometheus.yml'
        ports:
            - '9090:9090'

    node-exporter:
        image: prom/node-exporter
        ports:
            - '9100:9100'

    alertmanager:
        image: prom/alertmanager
        privileged: true
        volumes:
             - ./alertmanager/alertmanager.yml:/alertmanager.yml
        command:
            - '--config.file=/alertmanager.yml'
        ports:
            - '9093:9093'




Whatever

Related
template reference variable Code Example template reference variable Code Example
clang cannot detect basic headers Code Example clang cannot detect basic headers Code Example
cupertino icons flutter Code Example cupertino icons flutter Code Example
StringFormat C# Code Example StringFormat C# Code Example
hojarudi Code Example hojarudi Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7