14 lines
314 B
Text
14 lines
314 B
Text
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
prometheus:
|
||
|
image: prom/prometheus
|
||
|
container_name: prometheus
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- "{{ service_dir }}/prometheus.yml:/etc/prometheus/prometheus.yml"
|
||
|
extra_hosts:
|
||
|
- "host.docker.internal:host-gateway"
|
||
|
ports:
|
||
|
- "{{ prometheus_port }}:9090"
|