31 lines
585 B
YAML
31 lines
585 B
YAML
#vrsion: '3.8'
|
|
|
|
services:
|
|
owen-exporter:
|
|
build: .
|
|
container_name: owen-exporter
|
|
restart: unless-stopped
|
|
environment:
|
|
- LOGIN=l_salnikov@internet.ru
|
|
- PASSWORD=}v]CT]Q"_g7>4H%
|
|
ports:
|
|
- "8000:8000"
|
|
networks:
|
|
- monitoring-net
|
|
|
|
prometheus:
|
|
image: prom/prometheus:latest
|
|
container_name: prometheus
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9090:9090"
|
|
volumes:
|
|
- ./prometheus:/etc/prometheus
|
|
networks:
|
|
- monitoring-net
|
|
depends_on:
|
|
- owen-exporter
|
|
|
|
networks:
|
|
monitoring-net:
|
|
driver: bridge
|