17 lines
331 B
YAML
17 lines
331 B
YAML
version: '3'
|
|
|
|
services:
|
|
prometheus:
|
|
container_name: prometheus
|
|
image: prom/prometheus:v2.34.0
|
|
ports:
|
|
- 9000:9090
|
|
volumes:
|
|
- ./prometheus:/etc/prometheus
|
|
- prometheus-data:/prometheus
|
|
command: --web.enable-lifecycle --config.file=/etc/prometheus/prometheus.yml
|
|
|
|
|
|
volumes:
|
|
prometheus-data:
|