infra-iac/files/prometheus/compose.yml

26 lines
540 B
YAML
Raw Normal View History

2024-12-10 19:22:04 +01:00
services:
prometheus:
image: prom/prometheus
container_name: infra-prometheus
restart: unless-stopped
logging:
driver: local
networks:
infra-network:
ipv4_address: 172.28.0.5
aliases:
- prom.mforcen.dev
volumes:
- type: bind
source: /opt/infra/prometheus/prometheus.yml
target: /etc/prometheus/prometheus.yml
- type: volume
source: prom-data
target: /prometheus
volumes:
prom-data:
networks:
infra-network:
external: true