24 lines
492 B
YAML
24 lines
492 B
YAML
networks:
|
|
infra_dev_net:
|
|
external: true
|
|
|
|
volumes:
|
|
prom_data:
|
|
driver: local
|
|
|
|
services:
|
|
prometheus:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
image: docker-registry1.in.thelinuxpro.net:5000/tlp/prometheus:240605.1.2
|
|
container_name: prometheus
|
|
command: '--config.file=/etc/prometheus/prometheus.yml'
|
|
restart: unless-stopped
|
|
ports:
|
|
- '9090:9090'
|
|
volumes:
|
|
- prom_data:/prometheus
|
|
networks:
|
|
infra_dev_net:
|
|
ipv4_address: 10.99.23.32
|