Skip to content

Instantly share code, notes, and snippets.

@zettalyst
zettalyst / docker-compose.yml
Last active April 28, 2025 10:29
monitoring_lecture
services:
prometheus:
image: prom/prometheus:v3.3.0
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
ports:
- '9090:9090'
@zettalyst
zettalyst / docker-compose.yml
Created June 26, 2024 06:34
docker-compose: grafana, prometheus, node_exporter
services:
prometheus:
image: prom/prometheus:v2.52.0
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
ports:
- '9090:9090'
services:
prometheus:
image: prom/prometheus:v2.52.0
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
ports:
- '9090:9090'