forked from TrueCloudLab/frostfs-dev-env
27 lines
675 B
YAML
27 lines
675 B
YAML
|
version: '2.4'
|
||
|
services:
|
||
|
prometheus:
|
||
|
image: ${PROMETHEUS_IMAGE}:${PROMETHEUS_VERSION}
|
||
|
domainname: ${LOCAL_DOMAIN}
|
||
|
hostname: prometheus
|
||
|
container_name: prometheus
|
||
|
restart: on-failure
|
||
|
networks:
|
||
|
prometheus_int:
|
||
|
internet:
|
||
|
ipv4_address: ${IPV4_PREFIX}.121
|
||
|
volumes:
|
||
|
- ./../../vendor/hosts:/etc/hosts
|
||
|
- ./prometheus.yml:/etc/prometheus/prometheus.yml
|
||
|
command:
|
||
|
- --config.file=/etc/prometheus/prometheus.yml
|
||
|
ports:
|
||
|
- '9090:9090'
|
||
|
stop_signal: SIGKILL
|
||
|
env_file: [ ".env", ".prometheus.env", ".int_test.env" ]
|
||
|
|
||
|
networks:
|
||
|
prometheus_int:
|
||
|
internet:
|
||
|
external: true
|
||
|
name: basenet_internet
|