26 lines
540 B
YAML
26 lines
540 B
YAML
|
|
|
||
|
|
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
|